Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/dhcp pull in ../Makefile.inc before bsd.prefs.mk, i...



details:   https://anonhg.NetBSD.org/src/rev/9c07200953a4
branches:  trunk
changeset: 495485:9c07200953a4
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat Jul 29 12:44:45 2000 +0000

description:
pull in ../Makefile.inc before bsd.prefs.mk, in case someone (like me)
has some stuff depending on e.g. value of WARNS in /etc/mk.conf

diffstat:

 usr.sbin/dhcp/client/Makefile |  4 ++++
 usr.sbin/dhcp/server/Makefile |  4 ++++
 2 files changed, 8 insertions(+), 0 deletions(-)

diffs (28 lines):

diff -r 2e79e1686ef6 -r 9c07200953a4 usr.sbin/dhcp/client/Makefile
--- a/usr.sbin/dhcp/client/Makefile     Sat Jul 29 11:40:49 2000 +0000
+++ b/usr.sbin/dhcp/client/Makefile     Sat Jul 29 12:44:45 2000 +0000
@@ -30,6 +30,10 @@
 # OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 
+.if exists(${.CURDIR}/../Makefile.inc)
+.include "${.CURDIR}/../Makefile.inc"
+.endif
+
 .include <bsd.own.mk>
 
 SUBDIR=        scripts
diff -r 2e79e1686ef6 -r 9c07200953a4 usr.sbin/dhcp/server/Makefile
--- a/usr.sbin/dhcp/server/Makefile     Sat Jul 29 11:40:49 2000 +0000
+++ b/usr.sbin/dhcp/server/Makefile     Sat Jul 29 12:44:45 2000 +0000
@@ -30,6 +30,10 @@
 # OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 
+.if exists(${.CURDIR}/../Makefile.inc)
+.include "${.CURDIR}/../Makefile.inc"
+.endif
+
 .include <bsd.own.mk>
 
 SRCS   = dhcpd.c dhcp.c bootp.c confpars.c db.c class.c failover.c \



Home | Main Index | Thread Index | Old Index