diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:01 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:01 -0400 |
commit | 4eebbb6e892997af6612fa1b2e68e9f6b66669e0 (patch) | |
tree | fc5bd8c51af40650ead5ce601598035290eedf50 /graphics/jpeg2ps | |
parent | 60af1b051a3a25f93b51f32002342b57369f328a (diff) |
graphics/jpeg2ps: Fixed for bash4.
Diffstat (limited to 'graphics/jpeg2ps')
-rw-r--r-- | graphics/jpeg2ps/jpeg2ps.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/graphics/jpeg2ps/jpeg2ps.SlackBuild b/graphics/jpeg2ps/jpeg2ps.SlackBuild index 3668dcd0cb15..ece2f5e7a029 100644 --- a/graphics/jpeg2ps/jpeg2ps.SlackBuild +++ b/graphics/jpeg2ps/jpeg2ps.SlackBuild @@ -50,12 +50,8 @@ mkdir -p $PKG/usr/bin cp jpeg2ps $PKG/usr/bin chmod 755 $PKG/usr/bin/jpeg2ps -( 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/man/man1 cp jpeg2ps.1 $PKG/usr/man/man1 |