diff options
author | David Somero | 2010-05-19 08:33:19 +0200 |
---|---|---|
committer | David Somero | 2010-05-19 08:33:19 +0200 |
commit | d658e0fc644aecb94c982f47d359195eeb7c1384 (patch) | |
tree | bf9fc0656d90fbcc884c52d8ae77de3c515522ad /development/bpython | |
parent | de4c34120ca3922dfcff784f5c84f009270b9f2d (diff) | |
download | slackbuilds-d658e0fc644aecb94c982f47d359195eeb7c1384.tar.gz |
development/bpython: Fixed for bash4.
Diffstat (limited to 'development/bpython')
-rw-r--r-- | development/bpython/bpython.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/development/bpython/bpython.SlackBuild b/development/bpython/bpython.SlackBuild index 754c6d92b8..8843f7f891 100644 --- a/development/bpython/bpython.SlackBuild +++ b/development/bpython/bpython.SlackBuild @@ -31,12 +31,8 @@ find . \ python setup.py install --root=$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 |