mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
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:
committed by
Arne Fitzenreiter
parent
20253656fc
commit
a9fd8519c2
14
lfs/strip
14
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
|
||||
|
||||
Reference in New Issue
Block a user