diff options
author | Timo Aaltonen <timo.aaltonen@canonical.com> | 2012-12-01 11:45:10 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-12-04 13:03:18 +0100 |
commit | 4f73493faddae72d4e5f5b072a14b30ce475cc9c (patch) | |
tree | ee1a1a9f7375b12b08ef022066d8034266723bc5 /Makefile.am | |
parent | e11c7dc43f4ff9897e37cc0d793f8e1fb3b8453a (diff) | |
download | sssd-4f73493faddae72d4e5f5b072a14b30ce475cc9c.tar.gz sssd-4f73493faddae72d4e5f5b072a14b30ce475cc9c.tar.xz sssd-4f73493faddae72d4e5f5b072a14b30ce475cc9c.zip |
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.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
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 ################# |