diff --git a/scripts/build b/scripts/build index 61fee0801e..748f49a028 100755 --- a/scripts/build +++ b/scripts/build @@ -39,9 +39,9 @@ if [ ! -f $STAMP ]; then if [ -f $PKG_DIR/build ]; then $PKG_DIR/build $@ >&$VERBOSE_OUT if [ "$DEBUG" = no ]; then - $STRIP `find $BUILD/$1* -name "*.so"` >& /dev/null || \ + $STRIP `find $BUILD/$1* -name "*.so"` 2>/dev/null || \ echo "Information: no *.so libs found" - $STRIP `find $BUILD/$1* -name "*.so.[0-9]*"` >& /dev/null ||\ + $STRIP `find $BUILD/$1* -name "*.so.[0-9]*"` 2>/dev/null ||\ echo "Information: no *.so.[0-9]* libs found" fi for i in `find $SYSROOT_PREFIX/usr/lib/ -name "*.la"`; do \