diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:56 -0400 |
commit | f86394b54bfaa454cfdf4d89a9d043c551404967 (patch) | |
tree | 2088112164c529e41f9bc52416ceb47474b1bd09 /libraries/e_dbus | |
parent | 49476e4348c50a567c06134e3d280545897b9719 (diff) | |
download | slackbuilds-f86394b54bfaa454cfdf4d89a9d043c551404967.tar.gz |
libraries/e_dbus: Fixed for bash4.
Diffstat (limited to 'libraries/e_dbus')
-rw-r--r-- | libraries/e_dbus/e_dbus.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/e_dbus/e_dbus.SlackBuild b/libraries/e_dbus/e_dbus.SlackBuild index d12b7c4593..cdd3b62ad1 100644 --- a/libraries/e_dbus/e_dbus.SlackBuild +++ b/libraries/e_dbus/e_dbus.SlackBuild @@ -56,12 +56,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 || true -) +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 \ |