diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:33 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:33 -0400 |
commit | 04c229563be76bfe76458b6158f504c0e58c4a94 (patch) | |
tree | e32ede448e407f7acd4824b08e430b2259757306 /libraries | |
parent | 1b08bf8b3dacac9c8392a5aa089bcbaf087a7815 (diff) | |
download | slackbuilds-04c229563be76bfe76458b6158f504c0e58c4a94.tar.gz |
libraries/vobject: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/vobject/vobject.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/vobject/vobject.SlackBuild b/libraries/vobject/vobject.SlackBuild index ca2a1debd5..a0adc9c3f9 100644 --- a/libraries/vobject/vobject.SlackBuild +++ b/libraries/vobject/vobject.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 ACKNOWLEDGEMENTS.txt LICENSE-2.0.txt PKG-INFO README.txt \ |