Date: Mon, 13 Dec 1999 15:54:35 +1100 From: Peter Jeremy <peter.jeremy@alcatel.com.au> To: current@FreeBSD.ORG Subject: Re: make world broken building fortunes Message-ID: <99Dec13.154631est.40324@border.alcanet.com.au> In-Reply-To: <99Dec13.132333est.40338@border.alcanet.com.au>; from peter.jeremy@alcatel.com.au on Mon, Dec 13, 1999 at 01:31:40PM %2B1100 References: <99Dec13.105814est.40329@border.alcanet.com.au> <99Dec13.132333est.40338@border.alcanet.com.au>
next in thread | previous in thread | raw e-mail | index | archive | help
>On 1999-Dec-13 11:06:19 +1100, I wrote:
>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 strfile -Crs /3.0/cvs/src/games/fortune/datfiles/fortunes fortunes.dat
>strfile: illegal option -- C
>strfile [-iorsx] [-c char] sourcefile [datafile]
>*** Error code 1
>...
Well, the following fixes that problem for me:
Index: datfiles/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 02:27:16
@@ -33,16 +33,19 @@
.for f in fortunes fortunes2 fortunes2-o limerick startrek zippy
$f.dat: $f
- PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \
+ LD_LIBRARY_PATH=${LIBRARY_PATH} \
+ PATH=${.OBJDIR}/../strfile:$$PATH:/usr/games \
strfile -Crs ${.ALLSRC} ${.TARGET}
.endfor
fortunes-o.dat: fortunes-o
- PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \
+ LD_LIBRARY_PATH=${LIBRARY_PATH} \
+ PATH=${.OBJDIR}/../strfile:$$PATH:/usr/games \
strfile -Crsx ${.ALLSRC} ${.TARGET}
fortunes-o: fortunes-o.${TYPE}
- PATH=$$PATH:/usr/games:${.OBJDIR}/../../caesar \
+ LD_LIBRARY_PATH=${LIBRARY_PATH} \
+ PATH=${.OBJDIR}/../../caesar:$$PATH:/usr/games \
caesar 13 < ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>
And buildworld then dies at:
colldef -I /3.0/cvs/src/share/colldef -o ru_SU.ISO_8859-5.out /3.0/cvs/src/share/colldef/ru_SU.ISO_8859-5.src
colldef: syntax error near line 1
*** Error code 69
This looks like it is solved by Marcel's commit:
1.106 +3 -3 src/Makefile.inc1
Peter
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?99Dec13.154631est.40324>
