From 071b9cc1bebb35b84b00c1e3d1f337bf11a62272 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 15 Oct 2011 02:22:29 +0200 Subject: [PATCH] scripts/build: fix stripping of symbols Signed-off-by: Stephan Raue --- scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build b/scripts/build index 7f530963fc..a7c362740e 100755 --- a/scripts/build +++ b/scripts/build @@ -63,7 +63,7 @@ if [ ! -f $STAMP ]; then if [ -f $PKG_DIR/build ]; then $PKG_DIR/build $@ >&$VERBOSE_OUT - if [ "$DEBUG" = no ]; then + if [ ! "$DEBUG" = yes ]; then $STRIP `find $BUILD/$1* -name "*.so"` 2>/dev/null || \ echo "Information: no *.so libs found" $STRIP `find $BUILD/$1* -name "*.so.[0-9]*"` 2>/dev/null ||\