diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:41 -0400 |
commit | e301bd4a408e49e727385b2b61bb2243ba2f30dd (patch) | |
tree | 6a7916c3cc4cd360225a6708b2183f31a763d2bc /desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild | |
parent | 7685b2bac0711b3e0b7f887b0102fe2d997e66b0 (diff) |
desktop/xfce4-fsguard-plugin: Fixed for bash4.
Diffstat (limited to 'desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild')
-rw-r--r-- | desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild b/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild index e4a1246898a2..30ad6dbb62f0 100644 --- a/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild +++ b/desktop/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SlackBuild @@ -72,12 +72,8 @@ CFLAGS="$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 - 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 \ |