diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:12 -0400 |
commit | 3c3940b1b93f8cd0d6b3c2c49b2bd7d73ca38040 (patch) | |
tree | e393c469eac33aca903fa36c745a9e68ccbb4897 /libraries/gdata/gdata.SlackBuild | |
parent | e33cf688df6cb5909791e4d3638d81ec72957dea (diff) | |
download | slackbuilds-3c3940b1b93f8cd0d6b3c2c49b2bd7d73ca38040.tar.gz |
libraries/gdata: Fixed for bash4.
Diffstat (limited to 'libraries/gdata/gdata.SlackBuild')
-rw-r--r-- | libraries/gdata/gdata.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gdata/gdata.SlackBuild b/libraries/gdata/gdata.SlackBuild index 1f052f044c..7189eadeb5 100644 --- a/libraries/gdata/gdata.SlackBuild +++ b/libraries/gdata/gdata.SlackBuild @@ -32,12 +32,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 cp -a \ |