diff options
-rw-r--r-- | network/qwit/qwit.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/qwit/qwit.SlackBuild b/network/qwit/qwit.SlackBuild index 95b559936b22..aebf9bf1d00a 100644 --- a/network/qwit/qwit.SlackBuild +++ b/network/qwit/qwit.SlackBuild @@ -46,12 +46,8 @@ make \ CXXFLAGS="-pipe $SLKCFLAGS -g -Wall -W -D_REENTRANT \$(DEFINES)" make install INSTALL_ROOT=$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/share/pixmaps install -m 0644 images/$PRGNAM.png $PKG/usr/share/pixmaps/ |