diff --git a/config/functions b/config/functions index ce78e0943f..96e7d33540 100644 --- a/config/functions +++ b/config/functions @@ -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 }