diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:13 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:13 -0400 |
commit | 89a8053d9d30dd7f7713f67c78c619c6dafe5c32 (patch) | |
tree | 8484813a15d837ed7b7c8f0bf709df49e00adc72 /audio | |
parent | 65e316257c7ca1cdeacf31b1d9987cb3efd5d022 (diff) | |
download | slackbuilds-89a8053d9d30dd7f7713f67c78c619c6dafe5c32.tar.gz |
audio/listener: Fixed for bash4.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/listener/listener.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/listener/listener.SlackBuild b/audio/listener/listener.SlackBuild index 11e2a77e90..90aac28147 100644 --- a/audio/listener/listener.SlackBuild +++ b/audio/listener/listener.SlackBuild @@ -66,8 +66,8 @@ sed -i 's@/usr/local/etc/listener.conf@/etc/listener.conf@' manual.html make install INSTALL_PREFIX=$PKG -find $PKG | xargs file | grep "executable" | 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 license.txt manual.html $PKG/usr/doc/$PRGNAM-$VERSION ) |