0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 04:12:13 +02:00

configure: Fix enabled module variable expansion

Fixes #33646

Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
David Goulet 2020-03-31 08:21:12 -04:00 committed by teor
parent 42e56f5bac
commit 6c5c503a4c
No known key found for this signature in database
GPG Key ID: 10FEAA0E7075672A
2 changed files with 5 additions and 1 deletions

4
changes/ticket33646 Normal file
View File

@ -0,0 +1,4 @@
o Minor bugfixes (build system):
- Correctly output the enabled module in the configure summary. Before that,
the list shown was just plain wrong. Fixes bug 33646; bugfix on
0.4.3.2-alpha.

View File

@ -2665,7 +2665,7 @@ PPRINT_SUBTITLE([Modules])
m4_foreach_w([mname], MODULES,
[
test "xenable_module_mname" != "xno" && value=1 || value=0
AM_COND_IF(m4_join([], [BUILD_MODULE_], m4_toupper([]mname[])), value=1, value=0)
PPRINT_PROP_BOOL([mname (--disable-module-mname)], $value)
]
)