From owner-cvs-all Wed Apr 5 0: 3:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ACD337B773; Wed, 5 Apr 2000 00:03:47 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA03926; Wed, 5 Apr 2000 00:03:41 -0700 (PDT) (envelope-from andreas@FreeBSD.org) Message-Id: <200004050703.AAA03926@freefall.freebsd.org> From: Andreas Klemm Date: Wed, 5 Apr 2000 00:03:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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