]> git.ipfire.org Git - thirdparty/xtables-addons.git/commit
build: fix inclusion of Makefile.extra
authorJeremy Sowden <jeremy@azazel.net>
Sun, 9 Mar 2025 16:41:27 +0000 (17:41 +0100)
committerJan Engelhardt <jengelh@inai.de>
Sun, 9 Mar 2025 17:07:38 +0000 (18:07 +0100)
commit9aad194863ee1de63ec658e3a2e734b51caab101
tree6030094293d53a53c88ab5b524b3f2b6a41bda3e
parent397b282dba9a8bb52933950693f57d22ba73ac21
build: fix inclusion of Makefile.extra

Commit 08a16d90ceae ("build: use `$(top_srcdir)` when including Makefile.extra")
replaces hard-coded relative paths used to include Makefile.extra with
variables.  However, despite the commit message, the variables are enclosed with
braces, not parentheses, and it transpires that automake does not support the
use of braces in this context.  As a result, Makefile.extra is not included, and
the libxt_ACCOUNT.so and libxt_pknock.so extensions are not built.

Use parentheses instead.

Link: https://bugs.launchpad.net/ubuntu/+source/xtables-addons/+bug/2080528
Fixes: 08a16d90ceae ("build: use `$(top_srcdir)` when including Makefile.extra")
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
extensions/ACCOUNT/Makefile.am
extensions/Makefile.am
extensions/pknock/Makefile.am