Fix the other half of PR528 .. don't try to strip header files!

llvm-svn: 20301
This commit is contained in:
Reid Spencer 2005-02-24 07:12:43 +00:00
parent 1cca959e5d
commit 247a10e729
1 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ endif
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 @@ Relink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
$(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)