diff options
Diffstat (limited to 'system/slim/slim.SlackBuild')
-rw-r--r-- | system/slim/slim.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/slim/slim.SlackBuild b/system/slim/slim.SlackBuild index 5773cdf018..4b33bb4092 100644 --- a/system/slim/slim.SlackBuild +++ b/system/slim/slim.SlackBuild @@ -83,12 +83,8 @@ mv $PKG/etc/slim.conf $PKG/etc/slim.conf.new # Add the slackware-black theme to the package: tar xvf $CWD/slackware-black.tar.bz2 -C $PKG/usr/share/slim/themes -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null - 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 ( cd $PKG/usr/man || exit 1 find . -type f -exec gzip -9 {} \; |