diff options
author | Simo Sorce <simo@redhat.com> | 2013-09-05 18:50:20 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-09 13:42:05 +0200 |
commit | 2db6afe70eee2bbc22aa657a6b6609a9f3eb5d4c (patch) | |
tree | aa5c3acd45ee7d735845cc2157a86ae7dcb0c839 | |
parent | 0e5758d02ea9e70c498f48d287e8a26c48150711 (diff) | |
download | sssd-2db6afe70eee2bbc22aa657a6b6609a9f3eb5d4c.tar.gz sssd-2db6afe70eee2bbc22aa657a6b6609a9f3eb5d4c.tar.bz2 sssd-2db6afe70eee2bbc22aa657a6b6609a9f3eb5d4c.zip |
Makefile: Fix sssd_be targets
The $(PAM_LIBS) variable should be added to LDADD not LDFLAGS
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index b913a12b..05da9a14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -721,11 +721,11 @@ sssd_be_LDADD = \ -ldl \ $(SSSD_LIBS) \ $(CARES_LIBS) \ + $(PAM_LIBS) \ $(SSSD_INTERNAL_LTLIBS) sssd_be_LDFLAGS = \ -Wl,--version-script,$(srcdir)/src/providers/sssd_be.exports \ - -export-dynamic \ - $(PAM_LIBS) + -export-dynamic if BUILD_PYTHON_BINDINGS sss_obfuscate_pythondir = $(sbindir) |