toolchain: Do not attempt to strip anything in /dev, /proc, /sys and /tmp

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Michael Tremer
2020-04-14 15:01:00 +00:00
committed by Arne Fitzenreiter
parent 20253656fc
commit a9fd8519c2

View File

@@ -59,7 +59,15 @@ $(TARGET) :
# 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 \
STRIP=$(STRIP) $(SHELL) $(DIR_SRC)/src/stripper \
$(ROOT) \
--exclude=$(TOOLS_DIR) \
--exclude=/dev \
--exclude=/proc \
--exclude=/sys \
--exclude=/tmp \
--exclude=/usr/src \
--exclude=/usr/lib/vdr \
--exclude=/usr/sbin/vdr \
--exclude=/var/tmp \
--exclude=/usr/lib/go