diff options
author | mat <mat@FreeBSD.org> | 2016-10-24 18:18:50 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-10-24 18:18:50 +0800 |
commit | a20b69c216a68e3cb38e3be3f680fabddc709a73 (patch) | |
tree | 24b07d918a45d04da3d1e5d65d5a5802bc0952ff /misc | |
parent | 3d6c012d2362b9db5ced15b6080faa949e5c57cb (diff) | |
download | freebsd-ports-graphics-a20b69c216a68e3cb38e3be3f680fabddc709a73.tar.gz freebsd-ports-graphics-a20b69c216a68e3cb38e3be3f680fabddc709a73.tar.zst freebsd-ports-graphics-a20b69c216a68e3cb38e3be3f680fabddc709a73.zip |
OPTIONS_SET/OPTIONS_UNSET are global variables, they cannot be used in ports Makefiles.
So, replace them with OPTIONS_SLAVE, OPTIONS_EXCLUDE, OPTIONS_DEFAULT,
where appropriate.
The ghostscript ports are doing something nasty that is certainly wrong,
but I don't want to try to understand it.
Sponsored by: Absolight
Diffstat (limited to 'misc')
-rw-r--r-- | misc/freebsd-doc-en/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freebsd-doc-en/Makefile b/misc/freebsd-doc-en/Makefile index e4d41180032..8d42e00e618 100644 --- a/misc/freebsd-doc-en/Makefile +++ b/misc/freebsd-doc-en/Makefile @@ -49,7 +49,7 @@ TXT_DESC= Plain text # if PACKAGE_BUILDING=yes, enable all of $AVAILABLEFORMATS. .if defined(PACKAGE_BUILDING) -OPTIONS_SET+= ${AVAILABLEFORMATS} +OPTIONS_DEFAULT+= ${AVAILABLEFORMATS} .endif .include <bsd.port.options.mk> |