mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-21 18:07:21 -05:00
don't strip unstrippable things
This commit is contained in:
parent
d08f5a00db
commit
1cac51ea3c
|
|
@ -515,7 +515,11 @@ for f in $INSTALLDIR/$package/bin/* \
|
|||
$INSTALLDIR/$package/$target/bin/* \
|
||||
$INSTALLDIR/$package/libexec/gcc/$target/$GCC_VER/*
|
||||
do
|
||||
strip $f
|
||||
# exclude dll for windows, directories & the gccbug text file
|
||||
if ! [[ "$f" == *.dll || -d $f || "$f" == *-gccbug ]]
|
||||
then
|
||||
strip $f
|
||||
fi
|
||||
done
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user