diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:37 -0400 |
commit | 1caa7bfd7999d1ff538e6ebb8708d9dc562dc6d6 (patch) | |
tree | 62f9c5e6131849c40431d6e41148801b5e80c3f6 | |
parent | 00dd98d8e1512bd40b55f0e6eb57088f96ae4405 (diff) | |
download | slackbuilds-1caa7bfd7999d1ff538e6ebb8708d9dc562dc6d6.tar.gz |
libraries/wxX11: Fixed for bash4.
-rw-r--r-- | libraries/wxX11/wxX11.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/wxX11/wxX11.SlackBuild b/libraries/wxX11/wxX11.SlackBuild index f2a0f5233a..74f44102b3 100644 --- a/libraries/wxX11/wxX11.SlackBuild +++ b/libraries/wxX11/wxX11.SlackBuild @@ -52,12 +52,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - 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 docs/* $PKG/usr/doc/$PRGNAM-$VERSION |