From 2e03e63b6bcc73a9f7aa3a08303b4d39613dd317 Mon Sep 17 00:00:00 2001 From: kszaq Date: Thu, 9 Feb 2017 00:03:44 +0100 Subject: [PATCH] config/functions: do not print strip errors We cannot strip scipts but we also don't want to see errors regarding this. --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/functions b/config/functions index 3909d7ff09..e0263de80c 100644 --- a/config/functions +++ b/config/functions @@ -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 }