[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Fri Aug 20 02:32:42 PDT 2004
Changes in directory llvm:
Makefile.rules updated: 1.190 -> 1.191
---
Log message:
Remove even the slightest chance of a race condition occurring :)
---
Diffs of the changes: (+2 -2)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.190 llvm/Makefile.rules:1.191
--- llvm/Makefile.rules:1.190 Fri Aug 20 04:20:05 2004
+++ llvm/Makefile.rules Fri Aug 20 04:32:32 2004
@@ -459,12 +459,12 @@
# 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) ; \
More information about the llvm-commits
mailing list