From owner-freebsd-current Sun Aug 19 0:39:31 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id CAB2A37B40A; Sun, 19 Aug 2001 00:39:27 -0700 (PDT) (envelope-from jayed@mindspring.com) Received: from winjay (user-33qsaag.dsl.mindspring.com [199.174.41.80]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with SMTP id DAA16860; Sun, 19 Aug 2001 03:39:26 -0400 (EDT) Message-ID: <040101c12881$dba80b40$0b00a8c0@winjay> From: "Jay" To: , Subject: installworld can break on ppp Date: Sun, 19 Aug 2001 02:37:48 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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