diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:38 -0400 |
commit | 397a182e00f86cd3c1cf2c2908740c384e1a4dd1 (patch) | |
tree | dcd4f2948cd6ca32eb0059302e878ac5d713ae64 /desktop | |
parent | 4265fe8f885e532c8681c3478e808b6938208015 (diff) | |
download | slackbuilds-397a182e00f86cd3c1cf2c2908740c384e1a4dd1.tar.gz |
desktop/xfce4-cpugraph-plugin: Fixed for bash4.
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild b/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild index b627e55791..13415cd672 100644 --- a/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild +++ b/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-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 - 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 \ |