diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:33 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:33 -0400 |
commit | db7035099d868e0b448fd8a6c155436daf53ce59 (patch) | |
tree | d2b9ba1311f5f8a032e909e23a80d9de7e5c280b /office/rastertospp | |
parent | d82e939981e914a172aa05369892c15ea9195765 (diff) | |
download | slackbuilds-db7035099d868e0b448fd8a6c155436daf53ce59.tar.gz |
office/rastertospp: Fixed for bash4.
Diffstat (limited to 'office/rastertospp')
-rw-r--r-- | office/rastertospp/rastertospp.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/office/rastertospp/rastertospp.SlackBuild b/office/rastertospp/rastertospp.SlackBuild index 884918e02e..bea8f31370 100644 --- a/office/rastertospp/rastertospp.SlackBuild +++ b/office/rastertospp/rastertospp.SlackBuild @@ -62,10 +62,8 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ gcc -Wall -lcupsimage -o $PKG/usr/lib${LIBDIRSUFFIX}/cups/filter/$PRGNAM ./$PRGNAM.c -( cd $PKG - find . | xargs file | grep "executable" | 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 # Add the ppd mkdir -p $PKG/usr/share/cups/model/Samsung |