diff options
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 ) |