diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:38 -0400 |
commit | b154a33cd8a364ea94b2e874360000cfe8a05d7a (patch) | |
tree | cb1d15a6e458bf6b58a9188580ecf5d957ee887a /libraries | |
parent | 1caa7bfd7999d1ff538e6ebb8708d9dc562dc6d6 (diff) | |
download | slackbuilds-b154a33cd8a364ea94b2e874360000cfe8a05d7a.tar.gz |
libraries/wxsvg: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/wxsvg/wxsvg.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/wxsvg/wxsvg.SlackBuild b/libraries/wxsvg/wxsvg.SlackBuild index 30a0b2b54a..c8826abd1a 100644 --- a/libraries/wxsvg/wxsvg.SlackBuild +++ b/libraries/wxsvg/wxsvg.SlackBuild @@ -56,12 +56,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 || true -) +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 README TODO $PKG/usr/doc/$PRGNAM-$VERSION |