diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:22 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:22 -0400 |
commit | 45f2711511c8e334b0fcb31f4b18270da7b6aef1 (patch) | |
tree | dce79991c046b068b9c026d010a49da294be03da /libraries | |
parent | dac379804b4e1e8b90712230710e75ae1ad0c735 (diff) | |
download | slackbuilds-45f2711511c8e334b0fcb31f4b18270da7b6aef1.tar.gz |
libraries/libgadu: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libgadu/libgadu.SlackBuild | 8 |
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 \ |