diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:06 -0400 |
commit | 158ca6d937e514acaac583ff13f595bf7f5ce646 (patch) | |
tree | 6ec7a91a4a026156744f1fa0b506f342f1b5ffd4 /libraries | |
parent | 19446193c8f4a3359527292a48e5abe4a594d705 (diff) | |
download | slackbuilds-158ca6d937e514acaac583ff13f595bf7f5ce646.tar.gz |
libraries/libsndfile: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libsndfile/libsndfile.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libsndfile/libsndfile.SlackBuild b/libraries/libsndfile/libsndfile.SlackBuild index 4ab17b1940..d4f167b27c 100644 --- a/libraries/libsndfile/libsndfile.SlackBuild +++ b/libraries/libsndfile/libsndfile.SlackBuild @@ -58,12 +58,8 @@ make \ DESTDIR=$PKG \ install -( 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 AUTHORS COPYING ChangeLog INSTALL NEWS README \ |