From fdf86730489add1c7c5672473f71ae73f866e064 Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Sat, 2 Oct 2010 20:55:14 +0200 Subject: autotools-template: fix stripping files with single quotes in filename --- autotools-template.SlackBuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotools-template.SlackBuild b/autotools-template.SlackBuild index afa10ad..56d4be1 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 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 -- cgit v1.2.3