diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-29 10:05:08 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-29 10:05:08 +0000 |
commit | 4f5facb9ec95dfe34315802290eb42d9bb85121e (patch) | |
tree | 42dbd93056f288ca1efbae0ac5707ea4317f40af /package | |
parent | 0f55fe91169dd6b9439ccbaea98229f4a2b7e449 (diff) | |
download | buildroot-novena-4f5facb9ec95dfe34315802290eb42d9bb85121e.tar.gz buildroot-novena-4f5facb9ec95dfe34315802290eb42d9bb85121e.zip |
- make sure that strip and all it's arguments are passed if used via
STRIP=$(TARGET_STRIP) (i.e. without quoting). Thanks to Dimitry Golubovsky
for mentioning this.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 66e6f00f5..81b9eb2d0 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -109,7 +109,7 @@ STRIP_STRIP_UNNEEDED:=--strip-unneeded STRIP_STRIP_ALL:=--strip-all REMOVE_SECTION_COMMENT:=--remove-section=.comment REMOVE_SECTION_NOTE:=--remove-section=.note -TARGET_STRIP=$(TARGET_CROSS)strip $(REMOVE_SECTION_COMMENT) $(REMOVE_SECTION_NOTE) +TARGET_STRIP="$(TARGET_CROSS)strip $(REMOVE_SECTION_COMMENT) $(REMOVE_SECTION_NOTE)" STRIP=$(TARGET_STRIP) endif ifeq ($(BR2_STRIP_sstrip),y) @@ -118,11 +118,11 @@ STRIP_STRIP_UNNEEDED:= STRIP_STRIP_ALL:= REMOVE_SECTION_COMMENT:= REMOVE_SECTION_NOTE:= -TARGET_STRIP=$(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-sstrip +TARGET_STRIP="$(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-sstrip" STRIP=$(TARGET_STRIP) endif ifeq ($(BR2_STRIP_none),y) -TARGET_STRIP=true -Not_stripping +TARGET_STRIP="true -Not_stripping" STRIP=$(TARGET_STRIP) endif INSTALL=/usr/bin/install |