diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:19 -0400 |
commit | 707ef6598f136faa5a8f5464377f50a3852804d3 (patch) | |
tree | fdae34a3434661067c80ad59744d48670a4aa4b9 /libraries/libelf | |
parent | 4deccb7ee71a9f137339621e4712010986e491a3 (diff) | |
download | slackbuilds-707ef6598f136faa5a8f5464377f50a3852804d3.tar.gz |
libraries/libelf: Fixed for bash4.
Diffstat (limited to 'libraries/libelf')
-rw-r--r-- | libraries/libelf/libelf.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libelf/libelf.SlackBuild b/libraries/libelf/libelf.SlackBuild index cfee13fd0b..fa3ea89c0c 100644 --- a/libraries/libelf/libelf.SlackBuild +++ b/libraries/libelf/libelf.SlackBuild @@ -54,12 +54,8 @@ CFLAGS="$SLKCFLAGS" \ make make instroot=$PKG install -( 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 -) +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 \ |