From: Michael Tremer Date: Tue, 14 Apr 2020 15:01:00 +0000 (+0000) Subject: toolchain: Do not attempt to strip anything in /dev, /proc, /sys and /tmp X-Git-Tag: v2.25-core144~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9fd8519c2452cc77dc00513aaddf54b47eaee33;p=ipfire-2.x.git toolchain: Do not attempt to strip anything in /dev, /proc, /sys and /tmp Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter --- diff --git a/lfs/strip b/lfs/strip index 63e90fed25..48e698a7cf 100644 --- a/lfs/strip +++ b/lfs/strip @@ -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