svn commit: r284391 - user/ngie/more-tests

Garrett Cooper ngie at FreeBSD.org
Sun Jun 14 21:14:48 UTC 2015


Author: ngie
Date: Sun Jun 14 21:14:47 2015
New Revision: 284391
URL: https://svnweb.freebsd.org/changeset/base/284391

Log:
  To be on the safe side, only enable MK_META_MODE if MAKEVERSION >= 20150606

Modified:
  user/ngie/more-tests/Makefile

Modified: user/ngie/more-tests/Makefile
==============================================================================
--- user/ngie/more-tests/Makefile	Sun Jun 14 20:56:41 2015	(r284390)
+++ user/ngie/more-tests/Makefile	Sun Jun 14 21:14:47 2015	(r284391)
@@ -100,10 +100,10 @@
 # For more information, see the build(7) manual page.
 #
 
-.ifdef .PARSEDIR
+# Allow bootstrapping with fmake from earlier versions of FreeBSD
+.if defined(.PARSEDIR) && ${MAKE_VERSION} >= 20150606
 MK_META_MODE?=	yes
 .else
-# Allow bootstrapping with fmake from earlier versions of FreeBSD
 MK_META_MODE=	no
 .endif
 .if ${MK_META_MODE} == "yes"


More information about the svn-src-user mailing list