diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:57 -0400 |
commit | e1cdfeb926e3ca3379c8e7b432fc57053e1a1a45 (patch) | |
tree | 9e0aefe6f6d5ac318f310244cd4f75352c81cc94 /multimedia/kdenlive/kdenlive.SlackBuild | |
parent | 240383971c46936d3d494d9685a92649472684db (diff) | |
download | slackbuilds-e1cdfeb926e3ca3379c8e7b432fc57053e1a1a45.tar.gz |
multimedia/kdenlive: Fixed for bash4.
Diffstat (limited to 'multimedia/kdenlive/kdenlive.SlackBuild')
-rw-r--r-- | multimedia/kdenlive/kdenlive.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/multimedia/kdenlive/kdenlive.SlackBuild b/multimedia/kdenlive/kdenlive.SlackBuild index a33cf2f856..cffb3888ee 100644 --- a/multimedia/kdenlive/kdenlive.SlackBuild +++ b/multimedia/kdenlive/kdenlive.SlackBuild @@ -50,12 +50,8 @@ cmake \ make make install DESTDIR=$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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |