From 0e62aee6018dfa0f1c8ee8664c4ad1fd54c3ed11 Mon Sep 17 00:00:00 2001 From: Stefan Ilic Date: Tue, 16 Oct 2018 23:38:42 +0200 Subject: [PATCH] Don't strip binaries in static.sh (#11832) ##build --- sys/static.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sys/static.sh b/sys/static.sh index a0cabb7ec5..75de66c2ac 100755 --- a/sys/static.sh +++ b/sys/static.sh @@ -7,12 +7,6 @@ MAKE=make gmake --help >/dev/null 2>&1 [ $? = 0 ] && MAKE=gmake -if [ `uname` = Darwin ]; then - STRIP="strip" -else - STRIP="strip -s" -fi - # find root cd "$(dirname "$PWD/$0")" ; cd .. @@ -48,7 +42,6 @@ for a in ${BINS} ; do ${MAKE} clean #LDFLAGS=-static ${MAKE} -j2 ${MAKE} -j4 || exit 1 - ${STRIP} $a ) done