diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-10-02 22:58:42 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-10-02 22:58:42 +0200 |
commit | c763b8f8d96c41b43b9bc7853cfe3a07034e42a4 (patch) | |
tree | da25e0dd1e578616662c3d28be54213f9df4dec7 | |
parent | 6f450f5b9da1d981774ae029e43a6f1c1aefe248 (diff) |
perl-template: xargs -0 expects -print0 option from find
-rw-r--r-- | perl-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-template.SlackBuild b/perl-template.SlackBuild index 0c6356e..6b913bd 100644 --- a/perl-template.SlackBuild +++ b/perl-template.SlackBuild @@ -109,7 +109,7 @@ perl Build.PL \ # Strip binaries and libraries - # If this is not needed,remove it from the script. -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 |