From 8f61739e0de45ce2ee3be436fc91ef12a1a1c4f3 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Mon, 21 Sep 2015 21:37:41 +0200 Subject: BUILD: Link crypto_tests with existing library It's not necessary to bundle libsss_crypto to crypto_tests. We can link it directly. Reviewed-by: Jakub Hrozek --- Makefile.am | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6ed3de0c2..e2f634758 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1723,17 +1723,16 @@ debug_tests_LDADD = \ libsss_debug.la crypto_tests_SOURCES = \ - $(SSS_CRYPT_SOURCES) \ src/tests/crypto-tests.c crypto_tests_CFLAGS = \ - $(SSS_CRYPT_CFLAGS) \ $(AM_CFLAGS) \ $(CHECK_CFLAGS) crypto_tests_LDADD = \ - libsss_debug.la \ - $(SSS_CRYPT_LIBS) \ - $(SSSD_LIBS) \ $(CHECK_LIBS) \ + $(POPT_LIBS) \ + $(TALLOC_LIBS) \ + libsss_crypt.la \ + libsss_debug.la \ libsss_test_common.la ipa_hbac_tests_SOURCES = \ -- cgit