diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-10-02 22:58:52 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-10-02 22:58:52 +0200 |
commit | 4b4f774635fb329c75f6d9fb8b8be274a588f55f (patch) | |
tree | 7c2b9b58ab52078c51b0ca66b4c889214b46a7f2 | |
parent | c763b8f8d96c41b43b9bc7853cfe3a07034e42a4 (diff) |
python-template: xargs -0 expects -print0 option from find
-rw-r--r-- | python-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python-template.SlackBuild b/python-template.SlackBuild index 7132aa3..6f7c105 100644 --- a/python-template.SlackBuild +++ b/python-template.SlackBuild @@ -87,7 +87,7 @@ find . \ python setup.py install --root=$PKG # Strip binaries and libraries. -find $PKG | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # Compress man pages |