svn commit: r346911 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Mon Mar 3 15:12:56 UTC 2014


Author: mat
Date: Mon Mar  3 15:12:56 2014
New Revision: 346911
URL: http://svnweb.freebsd.org/changeset/ports/346911
QAT: https://qat.redports.org/buildarchive/r346911/

Log:
  Don't output warnings about WITH_DEBUG being on.
  
  Requested by:	eadler
  Sponsored by:	Absolight

Modified:
  head/Mk/bsd.options.mk

Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk	Mon Mar  3 14:42:38 2014	(r346910)
+++ head/Mk/bsd.options.mk	Mon Mar  3 15:12:56 2014	(r346911)
@@ -257,7 +257,8 @@ NEW_OPTIONS:=	${NEW_OPTIONS:N${opt}}
 .  sinclude "${OPTIONS_FILE}.local"
 
 ### convert WITH and WITHOUT found in make.conf or reloaded from old optionsfile
-.for opt in ${ALL_OPTIONS}
+# XXX once WITH_DEBUG is not magic any more, do remove the :NDEBUG from here.
+.for opt in ${ALL_OPTIONS:NDEBUG}
 .if defined(WITH_${opt})
 OPTIONS_WARNINGS+= "WITH_${opt}"
 OPTIONS_WARNINGS_SET+=	${opt}


More information about the svn-ports-all mailing list