diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:08 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:08 -0400 |
commit | 69dd81ba0d0da5836bed5c554343145cf932fdd1 (patch) | |
tree | e5afba7e7c11ea76ee848d9db91d48d3bb7b54ae /development/SQLAlchemy | |
parent | c219378d0f31586b6ca2df18d3d02df277121cff (diff) | |
download | slackbuilds-69dd81ba0d0da5836bed5c554343145cf932fdd1.tar.gz |
development/SQLAlchemy: Fixed for bash4.
Diffstat (limited to 'development/SQLAlchemy')
-rw-r--r-- | development/SQLAlchemy/SQLAlchemy.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/development/SQLAlchemy/SQLAlchemy.SlackBuild b/development/SQLAlchemy/SQLAlchemy.SlackBuild index 232abe7df3..9070ca5ac9 100644 --- a/development/SQLAlchemy/SQLAlchemy.SlackBuild +++ b/development/SQLAlchemy/SQLAlchemy.SlackBuild @@ -57,8 +57,8 @@ chmod -R u+w,go+r-w,a-s . 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 CHANGES* LICENSE PKG-INFO README* doc/* examples test \ |