diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:37 -0400 |
commit | 4265fe8f885e532c8681c3478e808b6938208015 (patch) | |
tree | a2ac95e025e4b489f70ba63ecdd9afc7935c19ad | |
parent | 4115c06a3af94675b0decb40e8b317f678df7945 (diff) | |
download | slackbuilds-4265fe8f885e532c8681c3478e808b6938208015.tar.gz |
desktop/xfce4-clipman-plugin: Fixed for bash4.
-rw-r--r-- | desktop/xfce4-clipman-plugin/xfce4-clipman-plugin.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xfce4-clipman-plugin/xfce4-clipman-plugin.SlackBuild b/desktop/xfce4-clipman-plugin/xfce4-clipman-plugin.SlackBuild index 6530108fd0..273e03f3d4 100644 --- a/desktop/xfce4-clipman-plugin/xfce4-clipman-plugin.SlackBuild +++ b/desktop/xfce4-clipman-plugin/xfce4-clipman-plugin.SlackBuild @@ -73,12 +73,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 \ |