scripts/build:

- make buildscript dash compatible
This commit is contained in:
Stephan Raue 2010-05-21 11:00:32 +02:00
parent 54ca16da99
commit 5a1d29a743

View File

@ -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 \