diff options
Diffstat (limited to 'python/subvertpy/subvertpy.SlackBuild')
-rw-r--r-- | python/subvertpy/subvertpy.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/subvertpy/subvertpy.SlackBuild b/python/subvertpy/subvertpy.SlackBuild index b155c4ae90..1b3761794d 100644 --- a/python/subvertpy/subvertpy.SlackBuild +++ b/python/subvertpy/subvertpy.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for subvertpy -# Copyright 2011 Mikko Värri, Finland +# Copyright 2012 Mikko Värri, Finland # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=subvertpy -VERSION=${VERSION:-0.8.5} +VERSION=${VERSION:-0.8.9} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -57,7 +57,7 @@ find . \ python setup.py install --root=$PKG -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 |