diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-04-25 12:16:41 -0500 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-15 10:50:18 +0200 |
commit | b8ec13df1cbe4009086a91f1505ab5bbae9b29e9 (patch) | |
tree | fa531d9185eb70ab7dd97ab5ecb224b015a9de32 /desktop/xfswitch-plugin | |
parent | d32c118c40c7258b78b07be83e2be78e2764da71 (diff) | |
download | slackbuilds-b8ec13df1cbe4009086a91f1505ab5bbae9b29e9.tar.gz |
desktop/xfswitch-plugin: Fixes for bash4.
Diffstat (limited to 'desktop/xfswitch-plugin')
-rw-r--r-- | desktop/xfswitch-plugin/xfswitch-plugin.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xfswitch-plugin/xfswitch-plugin.SlackBuild b/desktop/xfswitch-plugin/xfswitch-plugin.SlackBuild index f9c65a9927..8961ba7387 100644 --- a/desktop/xfswitch-plugin/xfswitch-plugin.SlackBuild +++ b/desktop/xfswitch-plugin/xfswitch-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 \ |