summaryrefslogtreecommitdiff
path: root/package/Makefile.in
diff options
context:
space:
mode:
authorJulien Floret <julien.floret@6wind.com>2016-06-10 13:28:02 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-06-10 20:15:15 +0200
commitde2fff217402eb8e6321610cf700f4b0393caa02 (patch)
tree52f230a6deb3293bf8a5085b024cbd8bbca123b2 /package/Makefile.in
parent89699852c50c9add778da69c7ee3e1325ff3be78 (diff)
build: cleanup remaining references to BR2_STRIP_sstrip
sstrip option has been removed in commit 106f5b8c5093 ("build: remove deprecated sstrip option"). Signed-off-by: Julien Floret <julien.floret@6wind.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/Makefile.in')
-rw-r--r--package/Makefile.in8
1 files changed, 0 insertions, 8 deletions
diff --git a/package/Makefile.in b/package/Makefile.in
index 2d454a638..f6d1e6787 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -201,14 +201,6 @@ TARGET_STRIP = $(TARGET_CROSS)strip
STRIPCMD = $(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note
KSTRIPCMD = $(STRIPCMD) $(STRIP_STRIP_UNNEEDED)
endif
-ifeq ($(BR2_STRIP_sstrip),y)
-STRIP_STRIP_DEBUG :=
-STRIP_STRIP_UNNEEDED :=
-STRIP_STRIP_ALL :=
-TARGET_STRIP = $(HOST_DIR)/usr/bin/$(GNU_TARGET_NAME)-sstrip
-STRIPCMD = $(TARGET_STRIP)
-KSTRIPCMD = $(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note --strip-unneeded
-endif
ifeq ($(BR2_STRIP_none),y)
TARGET_STRIP = true
STRIPCMD = $(TARGET_STRIP)