From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] toolchain: Do not attempt to strip anything in /dev, /proc, /sys and /tmp Date: Tue, 14 Apr 2020 15:01:00 +0000 Message-ID: <20200414150101.27682-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1475405223125878263==" List-Id: --===============1475405223125878263== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- lfs/strip | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lfs/strip b/lfs/strip index 08aaee7c4..3d0ede8bd 100644 --- a/lfs/strip +++ b/lfs/strip @@ -59,6 +59,14 @@ $(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 -- 2.20.1 --===============1475405223125878263==--