diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:03 -0400 |
commit | 16ffd655387aa4d7a952f6ae36cf2b60c606c86e (patch) | |
tree | b172e70e26d9f33714f6d239e4fe3e9fc16ff3af /misc/ibus-pinyin | |
parent | 6e5b4006b64b4425b37b06de5b9c0f1ae0ba13bb (diff) |
misc/ibus-pinyin: Fixed for bash4.
Diffstat (limited to 'misc/ibus-pinyin')
-rw-r--r-- | misc/ibus-pinyin/ibus-pinyin.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/ibus-pinyin/ibus-pinyin.SlackBuild b/misc/ibus-pinyin/ibus-pinyin.SlackBuild index 2e53a9e0c78b..870fd2970e1d 100644 --- a/misc/ibus-pinyin/ibus-pinyin.SlackBuild +++ b/misc/ibus-pinyin/ibus-pinyin.SlackBuild @@ -65,12 +65,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 || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true -) +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 \ |