summaryrefslogtreecommitdiffstats
path: root/libraries/tagpy
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/tagpy')
-rw-r--r--libraries/tagpy/tagpy.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/tagpy/tagpy.SlackBuild b/libraries/tagpy/tagpy.SlackBuild
index d70df4aac8..492c099371 100644
--- a/libraries/tagpy/tagpy.SlackBuild
+++ b/libraries/tagpy/tagpy.SlackBuild
@@ -69,12 +69,8 @@ CXXFLAGS="$SLKCFLAGS" \
python setup.py build || exit 1
python setup.py install --root $PKG || exit 1
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-)
+find $PKG | xargs 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
cp -a LICENSE PKG-INFO README* \