[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Wed Feb 16 08:17:22 PST 2005
Changes in directory llvm:
Makefile.rules updated: 1.299 -> 1.300
---
Log message:
Fix installation of configuration files.
---
Diffs of the changes: (+2 -2)
Makefile.rules | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.299 llvm/Makefile.rules:1.300
--- llvm/Makefile.rules:1.299 Wed Feb 16 10:13:02 2005
+++ llvm/Makefile.rules Wed Feb 16 10:17:11 2005
@@ -530,9 +530,9 @@
$(Echo) Installing Configuration Files To $(PROJ_etcdir)
$(Verb)for file in $(CONFIG_FILES); do \
if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
- $(Install) -D -m 0644 $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
+ $(Install) -m 0644 $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
- $(Install) -D -m 0644 $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
+ $(Install) -m 0644 $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
else \
$(ECHO) Error: cannot find config file $${file}. ; \
fi \
More information about the llvm-commits
mailing list