Remove even the slightest chance of a race condition occurring :)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15951 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-08-20 09:32:32 +00:00
parent b38e40564b
commit 05e90a0f64

View File

@ -459,12 +459,12 @@ endif
# Handle the CONFIG_FILES options
#---------------------------------------------------------
ifdef CONFIG_FILES
install:: $(sysconfdir) install-config-files
install:: install-config-files
$(sysconfdir):
$(MKDIR) $(sysconfdir)
install-config-files: $(CONFIG_FILES)
install-config-files: $(sysconfdir) $(CONFIG_FILES)
$(VERB) echo Installing Configuration Files To $(sysconfdir)
$(VERB) for file in $(CONFIG_FILES); do \
$(INSTALL) $(SourceDir)/$${file} $(sysconfdir) ; \