diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:55 -0400 |
commit | d21057b3522614248daf5aa3333f870ecc79313f (patch) | |
tree | 25d524a7ba9c2bc4132a8616fb723aaf9edf5bc6 /desktop | |
parent | 5480400d98c2c12c70bc49e32390bcab3562871d (diff) |
desktop/xfce4-volstatus-icon: Fixed for bash4.
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/xfce4-volstatus-icon/xfce4-volstatus-icon.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xfce4-volstatus-icon/xfce4-volstatus-icon.SlackBuild b/desktop/xfce4-volstatus-icon/xfce4-volstatus-icon.SlackBuild index c2961b0680f8..b07b3d180994 100644 --- a/desktop/xfce4-volstatus-icon/xfce4-volstatus-icon.SlackBuild +++ b/desktop/xfce4-volstatus-icon/xfce4-volstatus-icon.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 - 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 \ |