diff options
Diffstat (limited to 'games/nsudoku/nsudoku.SlackBuild')
-rw-r--r-- | games/nsudoku/nsudoku.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/nsudoku/nsudoku.SlackBuild b/games/nsudoku/nsudoku.SlackBuild index 779140dcbd..54dfa0a789 100644 --- a/games/nsudoku/nsudoku.SlackBuild +++ b/games/nsudoku/nsudoku.SlackBuild @@ -1,5 +1,9 @@ #!/bin/sh +# Slackware build script for nsudoku + +# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com + # Copyright 2010, 2012 Binh Nguyen <binhvng@gmail.com> # All rights reserved. # @@ -51,7 +55,7 @@ cd $PRGNAM-$VERSION gcc -lncurses -o $PRGNAM $PRGNAM.c install -Dm755 $PRGNAM $PKG/usr/bin/$PRGNAM -find $PKG | xargs 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |