]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/strip
Update for numerous lfs-files: removed deprecated configure options
[ipfire-2.x.git] / lfs / strip
index 30cb9b33b47703ce3a4a1dfce25baba267f3af19..084082e7b17ded779b8c58f78cd8b906787ed553 100644 (file)
--- a/lfs/strip
+++ b/lfs/strip
@@ -29,6 +29,15 @@ VER = ipfire
 THISAPP    = strip
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
+ifeq "$(TOOLCHAIN)" "1"
+       SHELL = /bin/bash
+       STRIP = /usr/bin/strip
+       ROOT = $(TOOLS_DIR)
+else
+       SHELL = $(TOOLS_DIR)/bin/bash
+       STRIP = $(TOOLS_DIR)/bin/strip
+endif
+
 ###############################################################################
 # Top-level Rules
 ###############################################################################
@@ -46,5 +55,9 @@ md5 :
 ###############################################################################
 
 $(TARGET) :
-       STRIP="/tools/bin/strip" $(DIR_SRC)/src/stripper / \
-               --exclude=/usr/src --exclude=/tools
+       # Don't strip VDR binaries, because they use a weird plugin system
+       # which does not work when unneeded symbols get stripped from
+       # /usr/sbin/vdr.
+       STRIP=$(STRIP) $(SHELL) $(DIR_SRC)/src/stripper $(ROOT) \
+               --exclude=/usr/src --exclude=$(TOOLS_DIR) \
+               --exclude=/usr/sbin/vdr --exclude=/usr/lib/vdr