public inbox for netfilter-devel@vger.kernel.org
 help / color / mirror / Atom feed
* [nft PATCH] Makefile: Set PKG_CONFIG_PATH env for 'make check'
@ 2026-01-27 22:15 Phil Sutter
  2026-02-05  1:32 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 4+ messages in thread
From: Phil Sutter @ 2026-01-27 22:15 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

When building nftables git HEAD, I use a script which also builds libmnl
and libnftnl in their respective repositories and populates
PKG_CONFIG_PATH variable so nftables is linked against them instead of
host libraries. This is mandatory as host-installed libraries are
chronically outdated and linking against them would fail.

Same situation exists with build test suite. Luckily the PKG_CONFIG_PATH
variable value used to build the project is cached in Makefiles and
Automake supports populating test runners' environment.

Signed-off-by: Phil Sutter <phil@nwl.cc>
---
Pablo: Could you please confirm this does not break your workflow? I
recall you relied upon build test suite while it never passed for me due
to the reasons described above.
---
 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile.am b/Makefile.am
index b134330d5ca22..18af82a927dc0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -450,6 +450,7 @@ tools/nftables.service: tools/nftables.service.in ${top_builddir}/config.status
 endif
 
 if !BUILD_DISTCHECK
+AM_TESTS_ENVIRONMENT = PKG_CONFIG_PATH=$(PKG_CONFIG_PATH)
 TESTS = tests/build/run-tests.sh \
 	tests/json_echo/run-test.py \
 	tests/monitor/run-tests.sh \
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-05 14:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-27 22:15 [nft PATCH] Makefile: Set PKG_CONFIG_PATH env for 'make check' Phil Sutter
2026-02-05  1:32 ` Pablo Neira Ayuso
2026-02-05 14:24   ` Phil Sutter
2026-02-05 14:27     ` Phil Sutter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox