bug 758782: mkdir_deps dependencies should be .PRECIOUS

This commit is contained in:
Joey Armstrong 2012-05-30 10:27:09 -04:00
parent 94abf61378
commit acc4f20b60
2 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,10 @@ ifndef INCLUDED_AUTOTARGETS_MK #{
MKDIR ?= mkdir -p
TOUCH ?= touch
# Deps will be considered intermediate when used as a pre-requisite for
# wildcard targets. Inhibit their removal, mkdir -p is a standalone op.
.PRECIOUS: %/.mkdir.done
###########################################################################
# Threadsafe directory creation
# GENERATED_DIRS - Automated creation of these directories.

View File

@ -18,6 +18,10 @@ ifndef INCLUDED_AUTOTARGETS_MK #{
MKDIR ?= mkdir -p
TOUCH ?= touch
# Deps will be considered intermediate when used as a pre-requisite for
# wildcard targets. Inhibit their removal, mkdir -p is a standalone op.
.PRECIOUS: %/.mkdir.done
###########################################################################
# Threadsafe directory creation
# GENERATED_DIRS - Automated creation of these directories.