summaryrefslogtreecommitdiffstats
path: root/libraries/tagpy
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:39:29 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:39:29 -0400
commitba674da012dfb7908ecaf5da579b41c34b774fbc (patch)
tree4115d3b5455924bab76bc06fea4c3fa4a9793312 /libraries/tagpy
parente82156f39676284be9b6dbe4eba4f1d69ee51670 (diff)
downloadslackbuilds-ba674da012dfb7908ecaf5da579b41c34b774fbc.tar.gz
slackbuilds-ba674da012dfb7908ecaf5da579b41c34b774fbc.tar.xz
libraries/tagpy: Fixed for bash4.
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* \