Subject: Re: CVS commit: src/usr.sbin/pppd
To: None <source-changes@netbsd.org>
From: Geoff Wing <mason@primenet.com.au>
List: source-changes
Date: 02/21/2005 03:20:40
Quentin Garnier <cube@netbsd.org> typed:
: Committed By:	cube
: Date:		Sun Feb 20 11:12:46 UTC 2005
: Modified Files:
: 	src/usr.sbin/pppd/chat: Makefile
: 	src/usr.sbin/pppd/plugins/minconn: Makefile
: 	src/usr.sbin/pppd/plugins/status: Makefile
: 	src/usr.sbin/pppd/pppd: Makefile sys-bsd.c
: 	src/usr.sbin/pppd/pppdump: Makefile
: 	src/usr.sbin/pppd/pppstats: Makefile
[...]
: Log Message:
: Make this use the new pppd version.

The .PATH isn't working for me without <bsd.own.mk>
Is it supposed to?  Is there a different bsd.*.mk intended for this?

Regards,
Geoff


--- usr.sbin/pppd/chat/Makefile.org	2005-02-21 08:39:52.000000000 +1100
+++ usr.sbin/pppd/chat/Makefile	2005-02-21 14:15:48.000000000 +1100
@@ -3,6 +3,8 @@
 PROG=	chat
 MAN=	chat.8
 
-.PATH: ${NETBSDSRCDIR}/dist/pppd/chat
+.include <bsd.own.mk>
+
+.PATH:	${NETBSDSRCDIR}/dist/pppd/chat
 
 .include <bsd.prog.mk>
--- usr.sbin/pppd/pppstats/Makefile.org	2005-02-21 08:39:52.000000000 +1100
+++ usr.sbin/pppd/pppstats/Makefile	2005-02-21 14:16:28.000000000 +1100
@@ -1,8 +1,10 @@
 #	$NetBSD: Makefile,v 1.16 2005/02/20 11:12:46 cube Exp $
 
-.PATH: ${NETBSDSRCDIR}/dist/pppd/pppstats
-
 PROG=	pppstats
 MAN=	pppstats.8
 
+.include <bsd.own.mk>
+
+.PATH: ${NETBSDSRCDIR}/dist/pppd/pppstats
+
 .include <bsd.prog.mk>
--- usr.sbin/pppd/pppdump/Makefile.org	2005-02-21 08:39:52.000000000 +1100
+++ usr.sbin/pppd/pppdump/Makefile	2005-02-21 14:17:56.000000000 +1100
@@ -1,11 +1,13 @@
 #	$NetBSD: Makefile,v 1.2 2005/02/20 11:12:46 cube Exp $
 
-.PATH: ${NETBSDSRCDIR}/dist/pppd/pppdump
-
 PROG=	pppdump
 SRCS=	pppdump.c deflate.c bsd-comp.c
 MAN=	pppdump.8
 
+.include <bsd.own.mk>
+
+.PATH: ${NETBSDSRCDIR}/dist/pppd/pppdump
+
 CPPFLAGS+=	-I${.CURDIR}
 
 DPADD+=${LIBZ}