Unverified Commit 6c5c503a authored by David Goulet's avatar David Goulet 🐼 Committed by teor
Browse files

configure: Fix enabled module variable expansion



Fixes #33646

Signed-off-by: David Goulet's avatarDavid Goulet <dgoulet@torproject.org>
parent 42e56f5b
Loading
Loading
Loading
Loading

changes/ticket33646

0 → 100644
+4 −0
Original line number Diff line number Diff line
  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.
+1 −1
Original line number Diff line number Diff line
@@ -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)
  ]
)