[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Wed Feb 23 23:12:54 PST 2005
Changes in directory llvm:
Makefile.rules updated: 1.301 -> 1.302
---
Log message:
Fix the other half of PR528: http://llvm.cs.uiuc.edu/PR528 .. don't try to strip header files!
---
Diffs of the changes: (+3 -3)
Makefile.rules | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.301 llvm/Makefile.rules:1.302
--- llvm/Makefile.rules:1.301 Wed Feb 23 21:56:32 2005
+++ llvm/Makefile.rules Thu Feb 24 01:12:43 2005
@@ -322,7 +322,7 @@
ifndef KEEP_SYMBOLS
Strip := $(PLATFORMSTRIPOPTS)
StripWarnMsg := "(without symbols)"
- Install.Flags += -s
+ Install.StripFlag += -s
endif
# Adjust linker flags for building an executable
@@ -362,8 +362,8 @@
$(CompileCommonOpts)
LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
$(Install.Flags)
-ProgInstall = $(INSTALL) $(Install.Flags) -m 0755
-DataInstall = $(INSTALL) $(Install.Flags) -m 0644
+ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
+DataInstall = $(INSTALL) -m 0644
Burg = $(BURG) -I $(PROJ_SRC_DIR)
TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR)
Archive = $(AR) $(AR.Flags)
More information about the llvm-commits
mailing list