summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLionel Landwerlin <llandwerlin@gmail.com>2010-01-27 02:09:04 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2010-01-28 22:55:42 +0100
commit96879ab1def240c7d3868690047c37915cc26679 (patch)
tree61fd1a7c015bbf1e8622a2e5e0c3a4a46536d92b
parent3470b376f2dad8325a96b5b85a8802cec716e26f (diff)
downloadbuildroot-novena-96879ab1def240c7d3868690047c37915cc26679.tar.gz
buildroot-novena-96879ab1def240c7d3868690047c37915cc26679.zip
package: fix unstripped binary installation
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.in b/package/Makefile.in
index e643577fe..bc0ac7ccd 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -163,7 +163,7 @@ TARGET_STRIP=$(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-sstrip
STRIPCMD=$(TARGET_STRIP)
endif
ifeq ($(BR2_STRIP_none),y)
-TARGET_STRIP=true Not_stripping
+TARGET_STRIP=true
STRIPCMD=$(TARGET_STRIP)
endif
INSTALL:=$(shell which install || type -p install)