summaryrefslogtreecommitdiffstats
path: root/development/paramiko
diff options
context:
space:
mode:
author David Somero2010-05-19 08:33:51 +0200
committer David Somero2010-05-19 08:33:51 +0200
commit0f366e6e865ed09e225e9658c423437b71dadb30 (patch)
treef8b51667e1811efdb7fa90f2ca1c7eb4edd21fcd /development/paramiko
parent0a1c8a13dc14c5cdfe682e705e8c5d80140fa969 (diff)
downloadslackbuilds-0f366e6e865ed09e225e9658c423437b71dadb30.tar.gz
development/paramiko: Fixed for bash4.
Diffstat (limited to 'development/paramiko')
-rw-r--r--development/paramiko/paramiko.SlackBuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/development/paramiko/paramiko.SlackBuild b/development/paramiko/paramiko.SlackBuild
index 1090b672d5..b68d0a5019 100644
--- a/development/paramiko/paramiko.SlackBuild
+++ b/development/paramiko/paramiko.SlackBuild
@@ -50,8 +50,8 @@ find . \
python setup.py install --root=$PKG
-find $PKG | 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 LICENSE PKG-INFO README docs $PKG/usr/doc/$PRGNAM-$VERSION