From 3445ff4adebd3674d8e227479800efe987682d07 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sun, 22 Nov 2009 20:52:15 +0100 Subject: package/Makefile.in: fix 'true' invocation for BR2_STRIP_none Closes #701 Coreutils true doesn't understand a -Not_stripping argument. Signed-off-by: Peter Korsgaard --- package/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package') diff --git a/package/Makefile.in b/package/Makefile.in index a10abe42a..b5a7a8eda 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 Not_stripping STRIPCMD=$(TARGET_STRIP) endif INSTALL:=$(shell which install || type -p install) -- cgit v1.2.3