From: Lionel Landwerlin Date: Wed, 27 Jan 2010 01:09:04 +0000 (+0100) Subject: package: fix unstripped binary installation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=96879ab1def240c7d3868690047c37915cc26679;p=buildroot.git package: fix unstripped binary installation Signed-off-by: Lionel Landwerlin Signed-off-by: Peter Korsgaard --- diff --git a/package/Makefile.in b/package/Makefile.in index e643577fe8..bc0ac7ccd3 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)