diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-05-29 14:46:38 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-05-29 14:46:38 +0000 |
commit | 97bac7723fcd53db9b4c5efebc0ac2eac6da6ae4 (patch) | |
tree | c67e8eef4a1edac7348ed23ed577dce80eeac8ee /Mk | |
parent | 29e027874914f19e60031fbd35eba55b15dd0e00 (diff) | |
download | ports-97bac7723fcd53db9b4c5efebc0ac2eac6da6ae4.tar.gz ports-97bac7723fcd53db9b4c5efebc0ac2eac6da6ae4.zip |
Notes
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.options.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index c7f42bdf7b76..9d96cbc32c6d 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -14,8 +14,10 @@ OPTIONSFILE?= ${PORT_DBDIR}/${UNIQUENAME}/options # NLS # Set the default values for the global options, as defined by portmgr -PORT_OPTIONS+= NLS \ - DOCS +.if !defined(NOPORTDOCS) +PORT_OPTIONS+= DOCS +.endif +PORT_OPTIONS+= NLS # Append options set by the port Makefile .for opt in ${OPTIONS_DEFINE} |