diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:42 -0400 |
commit | 8ee596a70f98beb3b8d02bdce3126e8b29b45711 (patch) | |
tree | db02b13d2b82d198f886785bd88464fdd894ecd8 /system/unrtf | |
parent | 933571ec1bdd1fc2239f166c3759458106f81d44 (diff) | |
download | slackbuilds-8ee596a70f98beb3b8d02bdce3126e8b29b45711.tar.gz |
system/unrtf: Fixed for bash4.
Diffstat (limited to 'system/unrtf')
-rw-r--r-- | system/unrtf/unrtf.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/unrtf/unrtf.SlackBuild b/system/unrtf/unrtf.SlackBuild index a31a766e5b..32bbf7168b 100644 --- a/system/unrtf/unrtf.SlackBuild +++ b/system/unrtf/unrtf.SlackBuild @@ -68,12 +68,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 - 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 {} \; |