summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-10-02 22:57:54 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-10-02 22:57:54 +0200
commit9fb8a162d82b24f43abe03506dda95b7b112ff6e (patch)
treee27901d8916c1670c5c63d92d9f1f0b0b63a55d9
parent8e6c774334e1546c500fd18eb3001f5accb314a4 (diff)
downloadtemplates-9fb8a162d82b24f43abe03506dda95b7b112ff6e.tar.gz
templates-9fb8a162d82b24f43abe03506dda95b7b112ff6e.tar.xz
autotools-template: xargs -0 expects -print0 option from find
-rw-r--r--autotools-template.SlackBuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/autotools-template.SlackBuild b/autotools-template.SlackBuild
index 56d4be1..303fe5b 100644
--- a/autotools-template.SlackBuild
+++ b/autotools-template.SlackBuild
@@ -108,7 +108,7 @@ make install DESTDIR=$PKG
# Strip binaries and libraries - this can be done with 'make install-strip'
# in many source trees, and that's usually acceptable if so, but if not,
# use this:
-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