Merge pull request #889 from lrusak/stripping

config/functions: change debug_strip syntax
This commit is contained in:
Christian Hewitt 2016-10-27 11:15:40 +04:00 committed by GitHub
commit 9e0afa874a

View File

@ -480,7 +480,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
}