From 89a8053d9d30dd7f7713f67c78c619c6dafe5c32 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:31:13 -0400 Subject: [PATCH] audio/listener: Fixed for bash4. --- audio/listener/listener.SlackBuild | 4 ++-- 1 file 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 )