diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:41:31 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:41:31 -0400 |
commit | 5ef262e808757daa737b809a4860d8ba26dd7d2e (patch) | |
tree | 2ba78d45824d60c3fc4d70afa93dbf6f70b80de1 /multimedia | |
parent | b2eab43876bae62ffd06b80f4fb7c3289e7148e4 (diff) | |
download | slackbuilds-5ef262e808757daa737b809a4860d8ba26dd7d2e.tar.gz |
multimedia/tvtime: Fixed for bash4.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/tvtime/tvtime.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/multimedia/tvtime/tvtime.SlackBuild b/multimedia/tvtime/tvtime.SlackBuild index 88a9db5cae..0664de13e3 100644 --- a/multimedia/tvtime/tvtime.SlackBuild +++ b/multimedia/tvtime/tvtime.SlackBuild @@ -78,12 +78,8 @@ CXXFLAGS="$SLKCFLAGS" \ 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 || 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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |