From 9e81a8115ab1e4f41c793076df424063a3a8c094 Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Fri, 23 Aug 2019 03:48:00 +0200 Subject: [PATCH] build: Make test-eapol depend on ell It seems that setting unit_test_eapol_DEPENDENCIES prevents test-eapol from depending on some ell .c files, like other unit tests do that have no explicit _DEPENDENCIES variable set in Makefile.am. Using EXTRA_unit_test_eapol_DEPENDENCIES instead also seems to fix this. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index c8223fef..19ba4488 100644 --- a/Makefile.am +++ b/Makefile.am @@ -412,7 +412,8 @@ unit_test_eapol_SOURCES = unit/test-eapol.c \ src/erp.h src/erp.c \ src/mschaputil.h src/mschaputil.c unit_test_eapol_LDADD = $(ell_ldadd) -unit_test_eapol_DEPENDENCIES = unit/cert-server.pem \ +unit_test_eapol_DEPENDENCIES = $(ell_dependencies) \ + unit/cert-server.pem \ unit/cert-server-key-pkcs8.pem \ unit/cert-client.pem \ unit/cert-client-key-pkcs8.pem