Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 Aug 2016 13:28:05 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r421163 - head/Mk
Message-ID:  <201608311328.u7VDS5AX033523@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Wed Aug 31 13:28:05 2016
New Revision: 421163
URL: https://svnweb.freebsd.org/changeset/ports/421163

Log:
  Don't duplicate the list of options helpers.
  
  People who come here can read the code, they will be able to understand
  the variable definition.
  
  Sponsored by:	Absolight

Modified:
  head/Mk/bsd.options.mk   (contents, props changed)

Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk	Wed Aug 31 13:27:59 2016	(r421162)
+++ head/Mk/bsd.options.mk	Wed Aug 31 13:28:05 2016	(r421163)
@@ -133,22 +133,16 @@
 # ${opt}_VARS_OFF=    FOO+=bar	When option is disabled, it will append
 #				FOO+= bar
 #
-# For each of:
-# ALL_TARGET BROKEN CATEGORIES CFLAGS CONFIGURE_ENV CONFLICTS CONFLICTS_BUILD
-# CONFLICTS_INSTALL CPPFLAGS CXXFLAGS DESKTOP_ENTRIES DISTFILES EXTRA_PATCHES
-# EXTRACT_ONLY GH_ACCOUNT GH_PROJECT GH_SUBDIR GH_TAGNAME GH_TUPLE IGNORE INFO
-# INSTALL_TARGET LDFLAGS LIBS MAKE_ARGS MAKE_ENV PATCHFILES PATCH_SITES
-# PLIST_DIRS PLIST_FILES PLIST_SUB PORTDOCS PORTEXAMPLES SUB_FILES SUB_LIST
-# TEST_TARGET USES,
-# defining ${opt}_${variable} will add its content to the actual variable when
-# the option is enabled.  Defining ${opt}_${variable}_OFF will add its content
-# to the actual variable when the option is disabled.
-#
 # For each of the depends target PKG FETCH EXTRACT PATCH BUILD LIB RUN,
 # defining ${opt}_${deptype}_DEPENDS will add its content to the actual
 # dependency when the option is enabled.  Defining
 # ${opt}_${deptype}_DEPENDS_OFF will add its content to the actual dependency
 # when the option is disabled.
+#
+# For each of the variables in _OPTIONS_FLAGS below, defining
+# ${opt}_${variable} will add its content to the actual variable when the
+# option is enabled.  Defining ${opt}_${variable}_OFF will add its content to
+# the actual variable when the option is disabled.
 
 ##
 # Set all the options available for the ports, beginning with the



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608311328.u7VDS5AX033523>