summaryrefslogtreecommitdiffstats
path: root/libraries/exempi
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:06 +0200
committer David Somero2010-05-19 08:36:06 +0200
commitf745eb654f467de896b57ad90ee0f4ac930ddf3a (patch)
tree90ad5b1b28ceaac1107667395cb1b6c5827621d5 /libraries/exempi
parentc82844a9999e59491662dbfe923a64bd4fa42361 (diff)
downloadslackbuilds-f745eb654f467de896b57ad90ee0f4ac930ddf3a.tar.gz
libraries/exempi: Fixed for bash4.
Diffstat (limited to 'libraries/exempi')
-rw-r--r--libraries/exempi/exempi.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/exempi/exempi.SlackBuild b/libraries/exempi/exempi.SlackBuild
index d0091aa8ef..0830727010 100644
--- a/libraries/exempi/exempi.SlackBuild
+++ b/libraries/exempi/exempi.SlackBuild
@@ -74,12 +74,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install-strip 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 AUTHORS COPYING ChangeLog INSTALL NEWS README \