summaryrefslogtreecommitdiffstats
path: root/libraries/libgadu
diff options
context:
space:
mode:
author David Somero2010-05-19 08:37:22 +0200
committer David Somero2010-05-19 08:37:22 +0200
commit45f2711511c8e334b0fcb31f4b18270da7b6aef1 (patch)
treedce79991c046b068b9c026d010a49da294be03da /libraries/libgadu
parentdac379804b4e1e8b90712230710e75ae1ad0c735 (diff)
downloadslackbuilds-45f2711511c8e334b0fcb31f4b18270da7b6aef1.tar.gz
libraries/libgadu: Fixed for bash4.
Diffstat (limited to 'libraries/libgadu')
-rw-r--r--libraries/libgadu/libgadu.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libgadu/libgadu.SlackBuild b/libraries/libgadu/libgadu.SlackBuild
index d96c8ebdd8..720bf9fa45 100644
--- a/libraries/libgadu/libgadu.SlackBuild
+++ b/libraries/libgadu/libgadu.SlackBuild
@@ -50,12 +50,8 @@ CXXFLAGS="$SLKCFLAGS" \
make || exit 1
make install DESTDIR=$PKG || exit 1
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-)
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog NEWS README \