svn commit: r320446 - head/Mk
Tijl Coosemans
tijl at FreeBSD.org
Mon Jun 10 08:39:15 UTC 2013
Author: tijl
Date: Mon Jun 10 08:39:14 2013
New Revision: 320446
URL: http://svnweb.freebsd.org/changeset/ports/320446
Log:
Append per arch defaults directly to OPTIONS_DEFAULT. Duplicates
are eliminated later.
Modified:
head/Mk/bsd.options.mk
Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk Mon Jun 10 08:37:14 2013 (r320445)
+++ head/Mk/bsd.options.mk Mon Jun 10 08:39:14 2013 (r320446)
@@ -76,11 +76,7 @@ OPTIONS_DEFINE+= ${opt}
.endfor
# Add per arch defaults
-.for opt in ${OPTIONS_DEFAULT_${ARCH}}
-.if empty(OPTIONS_DEFAULT:M${opt})
-OPTIONS_DEFAULT+= ${opt}
-.endif
-.endfor
+OPTIONS_DEFAULT+= ${OPTIONS_DEFAULT_${ARCH}}
# Remove options the port maintainer doesn't want
.for opt in ${OPTIONS_EXCLUDE_${ARCH}} ${OPTIONS_EXCLUDE} ${OPTIONS_SLAVE}
More information about the svn-ports-all
mailing list