From 483abb0108438624bdf32fbeb2db630cc61beff3 Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Wed, 26 Oct 2016 23:41:32 -0700 Subject: [PATCH] config/functions: change debug_strip syntax --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }