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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20301 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2005-02-24 07:12:43 +00:00
parent 623369ac56
commit 860598a295

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)