diff options
author | John Marino <marino@FreeBSD.org> | 2016-01-11 08:51:49 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-01-11 08:51:49 +0000 |
commit | c7aba825f01953cbc384c709fc7d9473d81a4c95 (patch) | |
tree | 44f088a6d8476984d4a65e17221e8edfd8adc13f /www/drupal6-nice_menus | |
parent | 50ce3a08a42a2e630046c7563b35be8b27759156 (diff) | |
download | ports-c7aba825f01953cbc384c709fc7d9473d81a4c95.tar.gz ports-c7aba825f01953cbc384c709fc7d9473d81a4c95.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
Notes
Notes:
svn path=/head/; revision=405770
Diffstat (limited to 'www/drupal6-nice_menus')
-rw-r--r-- | www/drupal6-nice_menus/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/drupal6-nice_menus/Makefile b/www/drupal6-nice_menus/Makefile index 508ed245242e..68dad41385f6 100644 --- a/www/drupal6-nice_menus/Makefile +++ b/www/drupal6-nice_menus/Makefile @@ -19,5 +19,6 @@ MODULE_FILES= arrow-right.png nice_menus.install nice_menus_default-rtl.css \ superfish/js/jquery.hoverIntent.minified.js \ superfish/js/superfish.js DOC_FILES= CHANGELOG.txt README.txt UPGRADE.txt LICENSE.txt +OPTIONS_DEFINE= DOCS .include <bsd.port.mk> |