diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:49 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:49 -0400 |
commit | d83f9b8e5ee5b56e52afbd32eb4409b60a35fbbc (patch) | |
tree | 19ab0404faaa6fe3a828f0924d4e1288eb3abbd3 /desktop/xfce4-sensors-plugin | |
parent | a560889f0f965d72d77e7b6662557b7434f67560 (diff) | |
download | slackbuilds-d83f9b8e5ee5b56e52afbd32eb4409b60a35fbbc.tar.gz |
desktop/xfce4-sensors-plugin: Fixed for bash4.
Diffstat (limited to 'desktop/xfce4-sensors-plugin')
-rw-r--r-- | desktop/xfce4-sensors-plugin/xfce4-sensors-plugin.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xfce4-sensors-plugin/xfce4-sensors-plugin.SlackBuild b/desktop/xfce4-sensors-plugin/xfce4-sensors-plugin.SlackBuild index a065453898..2123c0eb4a 100644 --- a/desktop/xfce4-sensors-plugin/xfce4-sensors-plugin.SlackBuild +++ b/desktop/xfce4-sensors-plugin/xfce4-sensors-plugin.SlackBuild @@ -75,12 +75,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 \ |