From owner-freebsd-current Sun Dec 12 16: 6:43 1999 Delivered-To: freebsd-current@freebsd.org Received: from alcanet.com.au (border.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with ESMTP id E418A14C82 for ; Sun, 12 Dec 1999 16:06:34 -0800 (PST) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: by border.alcanet.com.au id <40329>; Mon, 13 Dec 1999 10:58:14 +1100 Content-return: prohibited Date: Mon, 13 Dec 1999 11:06:19 +1100 From: Peter Jeremy Subject: make world broken building fortunes To: current@FreeBSD.ORG Message-Id: <99Dec13.105814est.40329@border.alcanet.com.au> MIME-version: 1.0 X-Mailer: Mutt 1.0i Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm still running a -CURRENT from just before the signal changes and for the past 4 days, my nightly buildworld has been dying at follows: ===> games/fortune/datfiles PATH=$PATH:/usr/games:/usr/obj/3.0/cvs/src/games/fortune/datfiles/../strfile st rfile -Crs /3.0/cvs/src/games/fortune/datfiles/fortunes fortunes.dat strfile: illegal option -- C strfile [-iorsx] [-c char] sourcefile [datafile] *** Error code 1 ... Looking at the command in question, I believe the fix is as follows, but it'll be a couple of hours to confirm. Index: Makefile =================================================================== RCS file: /home/CVSROOT/src/games/fortune/datfiles/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 1999/11/05 08:17:53 1.23 +++ Makefile 1999/12/13 00:04:00 @@ -33,16 +33,16 @@ .for f in fortunes fortunes2 fortunes2-o limerick startrek zippy $f.dat: $f - PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \ + PATH=/usr/games:${.OBJDIR}/../strfile:$$PATH \ strfile -Crs ${.ALLSRC} ${.TARGET} .endfor fortunes-o.dat: fortunes-o - PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \ + PATH=/usr/games:${.OBJDIR}/../strfile:$$PATH \ strfile -Crsx ${.ALLSRC} ${.TARGET} fortunes-o: fortunes-o.${TYPE} - PATH=$$PATH:/usr/games:${.OBJDIR}/../../caesar \ + PATH=/usr/games:${.OBJDIR}/../../caesar:$$PATH \ caesar 13 < ${.ALLSRC} > ${.TARGET} .include Peter -- Peter Jeremy (VK2PJ) peter.jeremy@alcatel.com.au Alcatel Australia Limited 41 Mandible St Phone: +61 2 9690 5019 ALEXANDRIA NSW 2015 Fax: +61 2 9690 5982 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message