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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to