diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-20 09:32:32 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-20 09:32:32 +0000 |
commit | 05e90a0f64672284deb2d2b3c4546595a41fb73d (patch) | |
tree | 21ca52467bfec75de264e83935b701febf7b6631 | |
parent | b38e40564b78818f8ee3015e15a29078aac83d18 (diff) |
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
-rw-r--r-- | Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index a4bdb1c93a..835773bfa7 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -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) ; \ |