Date: Sun, 19 Aug 2001 02:37:48 -0500 From: "Jay" <jayed@mindspring.com> To: <brian@freebsd.org>, <current@freebsd.org> Subject: installworld can break on ppp Message-ID: <040101c12881$dba80b40$0b00a8c0@winjay>
next in thread | raw e-mail | index | archive | help
Doing a make installworld with current -CURRENT can break on ppp. install -c -s -o root -g network -m 4554 ppp /usr/sbin m4 /usr/src/usr.sbin/ppp/ppp.8.m4 >ppp.8 m4: not found *** Error code 127 Stop in /usr/src/usr.sbin/ppp. Both root and my normal user id include '/usr/bin' in $PATH so I don't have the slightest idea why this happened. Modifying /usr/src/usr.sbin/ppp/Makefile to include the explicit path to m4 fixes this. I've included a diff though I imagine that vi would be quicker. --- Makefile Tue Aug 14 11:05:50 2001 +++ Makefile.new Sun Aug 19 02:32:15 2001 @@ -23,7 +23,7 @@ .SUFFIXES: .8 .8.m4 .8.m4.8: - m4 ${M4FLAGS} ${.IMPSRC} >${.TARGET} + /usr/bin/m4 ${M4FLAGS} ${.IMPSRC} >${.TARGET} .if defined(RELEASE_CRUNCH) CFLAGS+=-DRELEASE_CRUNCH Jay Edwards 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?040101c12881$dba80b40$0b00a8c0>