From 72e8c6d2ffbe3140616aa68b21037299ef30c15b 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 e338c9c16..3145f4950 100644 --- a/Makefile.am +++ b/Makefile.am @@ -761,6 +761,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 \ @@ -769,6 +770,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