From daf5be78066ce9016c09059dde2a7048052202b5 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 26 Jan 2013 21:48:58 +0000 Subject: [PATCH] include This is a mess. HAS_SSP (which should really be HAVE_SSP), is defined in bsd.sys.mk. So things that need it, include the file directly. The trouble comes because bsd.sys.mk, needs stuff that bsd.own.mk defines, so including first does not work. Anyway most other files include bsd.sys.mk directly, so user Makefiles should just not do that, and just include to get all the defines they need. --- share/mk/bsd.own.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 1f574e236f87..f8156d88219e 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.718 2013/01/18 19:32:09 christos Exp $ +# $NetBSD: bsd.own.mk,v 1.719 2013/01/26 21:48:58 christos Exp $ # This needs to be before bsd.init.mk .if defined(BSD_MK_COMPAT_FILE) @@ -1238,4 +1238,6 @@ TARGETS+= lintmanpages TESTSBASE= /usr/tests +.include + .endif # !defined(_BSD_OWN_MK_)