diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 2000-04-05 07:03:39 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 2000-04-05 07:03:39 +0000 |
commit | 70b4cfa810139ef5ca913daa40f4d6c83aeef92a (patch) | |
tree | 8995c4aae81bc477195e3d42a617f84f77467b3d | |
parent | c4049cd3db7d7231da3f4e57f61e2beac317cd13 (diff) | |
download | ports-70b4cfa810139ef5ca913daa40f4d6c83aeef92a.tar.gz ports-70b4cfa810139ef5ca913daa40f4d6c83aeef92a.zip |
released new apsfilter version 5.3.2 due to a
syntax error in SETUP
which is detected by bash2 but not by our shell
So all Linux user trapped over this
result is, that you can't select a printer and loop in printer selection
forever...
+ doesn't work:
+ PRINTER=`awk -F "|" \
^----- missing "
+ "{ if (FNR == $answer ) print \\$2 }" \
+ < $PRINTER_LIST"`
^^----- wrong order
+ works:
+ PRINTER="`awk -F "|" \
^----- o.k.
+ "{ if (FNR == $answer ) print \\$2 }" \
+ < $PRINTER_LIST`"
^^----- o.k.
Is it a bug in our shell ???
Notes
Notes:
svn path=/head/; revision=27340
-rw-r--r-- | print/apsfilter/Makefile | 2 | ||||
-rw-r--r-- | print/apsfilter/distinfo | 2 | ||||
-rw-r--r-- | print/apsfilter6/Makefile | 2 | ||||
-rw-r--r-- | print/apsfilter6/distinfo | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/print/apsfilter/Makefile b/print/apsfilter/Makefile index 55c4b9f91733..d2eeb70e7112 100644 --- a/print/apsfilter/Makefile +++ b/print/apsfilter/Makefile @@ -25,7 +25,7 @@ RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-letter RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba .endif -VERSION= 5.3.1 +VERSION= 5.3.2 USE_BZIP2= yes WRKSRC= ${WRKDIR}/apsfilter diff --git a/print/apsfilter/distinfo b/print/apsfilter/distinfo index e725a4f5b76b..3d3dbd981360 100644 --- a/print/apsfilter/distinfo +++ b/print/apsfilter/distinfo @@ -1 +1 @@ -MD5 (apsfilter-5.3.1.tar.bz2) = 0e6431923825c6f55e3035e1f01bf253 +MD5 (apsfilter-5.3.2.tar.bz2) = f1a03728b95a691bd48f38883269b6dd diff --git a/print/apsfilter6/Makefile b/print/apsfilter6/Makefile index 55c4b9f91733..d2eeb70e7112 100644 --- a/print/apsfilter6/Makefile +++ b/print/apsfilter6/Makefile @@ -25,7 +25,7 @@ RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-letter RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba .endif -VERSION= 5.3.1 +VERSION= 5.3.2 USE_BZIP2= yes WRKSRC= ${WRKDIR}/apsfilter diff --git a/print/apsfilter6/distinfo b/print/apsfilter6/distinfo index e725a4f5b76b..3d3dbd981360 100644 --- a/print/apsfilter6/distinfo +++ b/print/apsfilter6/distinfo @@ -1 +1 @@ -MD5 (apsfilter-5.3.1.tar.bz2) = 0e6431923825c6f55e3035e1f01bf253 +MD5 (apsfilter-5.3.2.tar.bz2) = f1a03728b95a691bd48f38883269b6dd |