From 4f5facb9ec95dfe34315802290eb42d9bb85121e Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Sat, 29 Sep 2007 10:05:08 +0000 Subject: - 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. --- package/Makefile.in | 6 +++--- 1 file 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 -- cgit v1.2.3