diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:06 -0400 |
commit | f745eb654f467de896b57ad90ee0f4ac930ddf3a (patch) | |
tree | 90ad5b1b28ceaac1107667395cb1b6c5827621d5 /libraries/exempi/exempi.SlackBuild | |
parent | c82844a9999e59491662dbfe923a64bd4fa42361 (diff) | |
download | slackbuilds-f745eb654f467de896b57ad90ee0f4ac930ddf3a.tar.gz |
libraries/exempi: Fixed for bash4.
Diffstat (limited to 'libraries/exempi/exempi.SlackBuild')
-rw-r--r-- | libraries/exempi/exempi.SlackBuild | 8 |
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 \ |