diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:03 -0400 |
commit | 1f59e75bc89c27d0f8df55bc53a7b84a104dca06 (patch) | |
tree | ad733df44b3669a42e37cddb7e0305382efc9d6f /libraries/libshout | |
parent | b46307846699f45098d0dcb0f197afb89adbb020 (diff) | |
download | slackbuilds-1f59e75bc89c27d0f8df55bc53a7b84a104dca06.tar.gz slackbuilds-1f59e75bc89c27d0f8df55bc53a7b84a104dca06.tar.xz |
libraries/libshout: Fixed for bash4.
Diffstat (limited to 'libraries/libshout')
-rw-r--r-- | libraries/libshout/libshout.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libshout/libshout.SlackBuild b/libraries/libshout/libshout.SlackBuild index 62125767c19..18744cbb8c9 100644 --- a/libraries/libshout/libshout.SlackBuild +++ b/libraries/libshout/libshout.SlackBuild @@ -57,12 +57,8 @@ CXXFLAGS="$SLKCFLAGS" \ make docdir=/usr/doc/$PRGNAM-$VERSION make install docdir=/usr/doc/$PRGNAM-$VERSION 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 doc/libshout.xml doc/spec-html.xsl $PKG/usr/doc/$PRGNAM-$VERSION |