diff options
author | marino <marino@FreeBSD.org> | 2016-01-11 16:51:49 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-01-11 16:51:49 +0800 |
commit | 32326eeb97c388ee2f819059415ad53def617982 (patch) | |
tree | 44f088a6d8476984d4a65e17221e8edfd8adc13f /www/drupal7-wysiwyg | |
parent | fb3f8a89f0af435634c295319f08982160397171 (diff) | |
download | freebsd-ports-gnome-32326eeb97c388ee2f819059415ad53def617982.tar.gz freebsd-ports-gnome-32326eeb97c388ee2f819059415ad53def617982.tar.zst freebsd-ports-gnome-32326eeb97c388ee2f819059415ad53def617982.zip |
Remove OPTIONS_DEFINE out of Mk/Uses/drupal.mk (affects many drupal ports)
The USES= fragments are not supposed to modify OPTIONS_* because they are
loaded after bsd.options.mk.
In the particular case of drupal, this resulted in SELECTED_OPTIONS and
DESELECTED_OPTIONS being incorrect. A second problem was that the "="
was used for assignment rather than "?=", meaning that any port with
USES=drupal got their options overwritten at some point (this included
the main www/drupal6 and www/drupal7 ports).
This commit adds OPTIONS_DEFINE=DOCS to almost every port that had set
USES=drupal to correct the mistake of setting options in Mk/Uses.
PR: 206060
Diffstat (limited to 'www/drupal7-wysiwyg')
-rw-r--r-- | www/drupal7-wysiwyg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/drupal7-wysiwyg/Makefile b/www/drupal7-wysiwyg/Makefile index 1fdab3e502f0..e86865cd2b0e 100644 --- a/www/drupal7-wysiwyg/Makefile +++ b/www/drupal7-wysiwyg/Makefile @@ -12,7 +12,7 @@ COMMENT= Allows implementation of WYSIWYG editors for editing Drupal content USES= drupal:7,module -OPTIONS_DEFINE= TINYMCE3 CKEDITOR YUI +OPTIONS_DEFINE= TINYMCE3 CKEDITOR YUI DOCS TINYMCE3_DESC= Install TinyMCE3 Editor CKEDITOR_DESC= Install CKEditor |