config/functions: do not print strip errors

We cannot strip scipts but we also don't want to see errors regarding this.
This commit is contained in:
kszaq 2017-02-09 00:03:44 +01:00 committed by MilhouseVH
parent bb617446b8
commit 2e03e63b6b

View File

@ -507,7 +507,7 @@ show_config() {
# strip
debug_strip() {
if [ ! "$DEBUG" = yes ]; then
find $* -type f -executable | xargs $STRIP 1>/dev/null || :
find $* -type f -executable | xargs $STRIP 2>/dev/null || :
fi
}