diff options
Diffstat (limited to 'system/herculesstudio/herculesstudio.SlackBuild')
-rw-r--r-- | system/herculesstudio/herculesstudio.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/herculesstudio/herculesstudio.SlackBuild b/system/herculesstudio/herculesstudio.SlackBuild index f946aa331e..b5a39750cd 100644 --- a/system/herculesstudio/herculesstudio.SlackBuild +++ b/system/herculesstudio/herculesstudio.SlackBuild @@ -52,12 +52,8 @@ qmake make 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 || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # Copy icon & desktop file to package mkdir -p $PKG/usr/share/{applications,pixmaps} |