diff options
Diffstat (limited to 'cmake-template.SlackBuild')
-rw-r--r-- | cmake-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake-template.SlackBuild b/cmake-template.SlackBuild index c9e7914..6887dc9 100644 --- a/cmake-template.SlackBuild +++ b/cmake-template.SlackBuild @@ -100,7 +100,7 @@ cd .. # Strip binaries and libraries - this can be done with 'make install-strip' # in many source trees, and that's usually acceptable, if not, use this: -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG | 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 |