Date: Wed, 5 Apr 2000 00:03:41 -0700 (PDT) From: Andreas Klemm <andreas@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 Message-ID: <200004050703.AAA03926@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
andreas 2000/04/05 00:03:41 PDT
Modified files:
print/apsfilter Makefile
print/apsfilter/files md5
Log:
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 ???
Revision Changes Path
1.49 +2 -2 ports/print/apsfilter/Makefile
1.22 +1 -1 ports/print/apsfilter/files/md5
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200004050703.AAA03926>
