diff options
author | John Marino <marino@FreeBSD.org> | 2015-12-09 23:36:19 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-12-09 23:36:19 +0000 |
commit | 3a37de624384fd1c67d301bbe1b9566ad19bda8f (patch) | |
tree | 8a73ab52ceefcd7e62491c5a0a10a93c25e2b622 | |
parent | www/redmine: update to 2.6.9 (diff) |
lang/fpc-units: Fix BFD option regression
The BFD option is supported to be off by default on FreeBSD9, but the
upgrade to version 3.0.0 re-enabled it because the logic to prevent this
was faulty. Using the immediate evaluation (:=) for the options
definition restores the intended configuration.
Reported by: pkg-fallout
Notes
Notes:
svn path=/head/; revision=403435
-rw-r--r-- | lang/fpc-units/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/fpc-units/Makefile b/lang/fpc-units/Makefile index 4d12a1904b08..aeecb62230b8 100644 --- a/lang/fpc-units/Makefile +++ b/lang/fpc-units/Makefile @@ -25,8 +25,8 @@ ALL_OPTIONS= A52 ASPELL BZIP2 CAIRO CHM DBLIB DBUS DTS FASTCGI \ RTL_EXTRA RTL_OBJPAS RTL_UNICODE SDL SVGALIB SYMBOLIC \ SYSLOG TCL UNZIP USERS UTMP UUID X11 XFORMS ZLIB -OPTIONS_DEFINE= ${ALL_OPTIONS} BFD -OPTIONS_DEFAULT= ${ALL_OPTIONS} +OPTIONS_DEFINE:= ${ALL_OPTIONS} BFD +OPTIONS_DEFAULT:= ${ALL_OPTIONS} A52_DESC= Interface to a52 library ASPELL_DESC= Interface to aspell spelling checker |