svn commit: r264929 - head/share/mk

Warner Losh imp at FreeBSD.org
Fri Apr 25 19:25:37 UTC 2014


Author: imp
Date: Fri Apr 25 19:25:37 2014
New Revision: 264929
URL: http://svnweb.freebsd.org/changeset/base/264929

Log:
  Now that all the NO_foo expressed in this loop have been removed from
  the tree, start warning that NO_foo is deprecated. It was supposed to
  be gone from the tree as a user-setting a long time ago...

Modified:
  head/share/mk/bsd.opts.mk

Modified: head/share/mk/bsd.opts.mk
==============================================================================
--- head/share/mk/bsd.opts.mk	Fri Apr 25 19:25:26 2014	(r264928)
+++ head/share/mk/bsd.opts.mk	Fri Apr 25 19:25:37 2014	(r264929)
@@ -244,7 +244,7 @@ __DEFAULT_YES_OPTIONS+=GCC GNUCXX GCC_BO
 # Supported NO_* options (if defined, MK_* will be forced to "no",
 # regardless of user's setting).
 #
-# These are transitional and will disappaer in the fullness of time.
+# These are transitional and will disappaer in the FreeBSD 12.
 #
 .for var in \
     CTF \
@@ -253,6 +253,7 @@ __DEFAULT_YES_OPTIONS+=GCC GNUCXX GCC_BO
     MAN \
     PROFILE
 .if defined(NO_${var})
+.warning "NO_${var} is defined, but deprecated. Please use MK_${var}=no instead."
 MK_${var}:=no
 .endif
 .endfor


More information about the svn-src-all mailing list