summaryrefslogtreecommitdiffstats
path: root/libraries/wxX11
diff options
context:
space:
mode:
author David Somero2010-05-19 08:39:37 +0200
committer David Somero2010-05-19 08:39:37 +0200
commit1caa7bfd7999d1ff538e6ebb8708d9dc562dc6d6 (patch)
tree62f9c5e6131849c40431d6e41148801b5e80c3f6 /libraries/wxX11
parent00dd98d8e1512bd40b55f0e6eb57088f96ae4405 (diff)
downloadslackbuilds-1caa7bfd7999d1ff538e6ebb8708d9dc562dc6d6.tar.gz
libraries/wxX11: Fixed for bash4.
Diffstat (limited to 'libraries/wxX11')
-rw-r--r--libraries/wxX11/wxX11.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/wxX11/wxX11.SlackBuild b/libraries/wxX11/wxX11.SlackBuild
index f2a0f5233a..74f44102b3 100644
--- a/libraries/wxX11/wxX11.SlackBuild
+++ b/libraries/wxX11/wxX11.SlackBuild
@@ -52,12 +52,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null || true
- 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 docs/* $PKG/usr/doc/$PRGNAM-$VERSION