config/functions: change debug_strip syntax

This commit is contained in:
Lukas Rusak 2016-10-26 23:41:32 -07:00
parent c34df6f141
commit 483abb0108
No known key found for this signature in database
GPG Key ID: 8C310C807E7393A3

View File

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