diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:07 -0400 |
commit | c219378d0f31586b6ca2df18d3d02df277121cff (patch) | |
tree | 965c11e303650741d1fb0459ce9b3cd0d2d7e360 /development | |
parent | e0998e10496ab7f663037aa941d0d41b0cde4115 (diff) | |
download | slackbuilds-c219378d0f31586b6ca2df18d3d02df277121cff.tar.gz |
development/PyOpenGL: Fixed for bash4.
Diffstat (limited to 'development')
-rw-r--r-- | development/PyOpenGL/PyOpenGL.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/development/PyOpenGL/PyOpenGL.SlackBuild b/development/PyOpenGL/PyOpenGL.SlackBuild index d13e9d6088..ffe5675ccf 100644 --- a/development/PyOpenGL/PyOpenGL.SlackBuild +++ b/development/PyOpenGL/PyOpenGL.SlackBuild @@ -44,8 +44,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/$NAME-$VERSION install -m 0644 PKG-INFO documentation/{development,using}.html \ |