diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-08-31 13:28:05 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-08-31 13:28:05 +0000 |
commit | 679f715601b23d481a68fd28db4c8c4fa453083f (patch) | |
tree | 4fc011f6c6a754c56dcb3cae54fd9a0a04ba85f7 /Mk/bsd.options.mk | |
parent | - Remove bogus USES=tar:bzip2 (diff) |
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
Notes
Notes:
svn path=/head/; revision=421163
Diffstat (limited to '')
-rw-r--r-- | Mk/bsd.options.mk | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index a809fc534f83..fccbed6c070e 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -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 |