diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:51 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:51 -0400 |
commit | 0f366e6e865ed09e225e9658c423437b71dadb30 (patch) | |
tree | f8b51667e1811efdb7fa90f2ca1c7eb4edd21fcd /development | |
parent | 0a1c8a13dc14c5cdfe682e705e8c5d80140fa969 (diff) | |
download | slackbuilds-0f366e6e865ed09e225e9658c423437b71dadb30.tar.gz |
development/paramiko: Fixed for bash4.
Diffstat (limited to 'development')
-rw-r--r-- | development/paramiko/paramiko.SlackBuild | 4 |
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 |