diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:23 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:23 -0400 |
commit | a363ec18253da1f86cf0597fa5618db54612609b (patch) | |
tree | 92bd5aa45f341dcd103779f8aa8d4261dbe33fcc /system/rdiff-backup | |
parent | 97bbfc8e2a82b70b48b97d130c1802941b5165a6 (diff) | |
download | slackbuilds-a363ec18253da1f86cf0597fa5618db54612609b.tar.gz |
system/rdiff-backup: Fixed for bash4.
Diffstat (limited to 'system/rdiff-backup')
-rw-r--r-- | system/rdiff-backup/rdiff-backup.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/rdiff-backup/rdiff-backup.SlackBuild b/system/rdiff-backup/rdiff-backup.SlackBuild index 1c3a983b22..bf33653912 100644 --- a/system/rdiff-backup/rdiff-backup.SlackBuild +++ b/system/rdiff-backup/rdiff-backup.SlackBuild @@ -46,12 +46,8 @@ chmod -R a-s,u+rw,go-w+r . sed -i 's|share/man/|man/|g' setup.py || exit 1 python setup.py install --prefix=/usr --root=$PKG || exit 1 -( 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 {} \; |