From a6b6f33f018566db82ec3f943225742c8f9b4e0f Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 15 Jan 2020 17:43:02 +0100 Subject: [PATCH] build: fix linking of "src/devices/wifi/tests/test-devices-wifi" On ppc64le, the linking fails due to unresolved symbols. Fixes: 7d8da6c9c150 ('build: build intermediate library with core wifi for device-plugin and tests') --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ab4f8b8e3b..c7cb8a70e3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3684,8 +3684,9 @@ src_devices_wifi_tests_test_devices_wifi_SOURCES = \ src_devices_wifi_tests_test_devices_wifi_CPPFLAGS = $(src_cppflags_base_test) src_devices_wifi_tests_test_devices_wifi_LDADD = \ - src/libNetworkManagerTest.la \ src/devices/wifi/libnm-wifi-base.la \ + src/libNetworkManagerTest.la \ + src/libNetworkManagerBase.la \ $(NULL) src_devices_wifi_tests_test_devices_wifi_LDFLAGS = $(SANITIZER_EXEC_LDFLAGS)