From 9c26eebe90991a1f30016f57a589d4433882fd8e Mon Sep 17 00:00:00 2001 From: Timo Aaltonen Date: Sat, 1 Dec 2012 11:45:10 +0200 Subject: link sss_ssh_authorizedkeys and sss_ssh_knownhostsproxy with -lpthread There used to be an overlinked dependency that's gone now, so to fix a build error add CLIENT_LIBS to sss_ssh_knownhostsproxy_LDFLAGS. v2: Fix sss_ssh_authorizedkeys linking as well. --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index afb6622a9..e64cc091a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -663,6 +663,7 @@ sss_ssh_authorizedkeys_SOURCES = \ sss_ssh_authorizedkeys_CFLAGS = $(AM_CFLAGS) sss_ssh_authorizedkeys_LDADD = \ libsss_util.la +sss_ssh_authorizedkeys_LDFLAGS = $(CLIENT_LIBS) sss_ssh_knownhostsproxy_SOURCES = \ src/sss_client/common.c \ @@ -671,6 +672,7 @@ sss_ssh_knownhostsproxy_SOURCES = \ sss_ssh_knownhostsproxy_CFLAGS = $(AM_CFLAGS) sss_ssh_knownhostsproxy_LDADD = \ libsss_util.la +sss_ssh_knownhostsproxy_LDFLAGS = $(CLIENT_LIBS) endif ################# -- cgit