diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-08-14 14:09:59 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-08-14 14:09:59 +0000 |
commit | 2d1baf67f5d14ea8bb64298d7306dd168edc5c7a (patch) | |
tree | b9e38cbc85c5f8959da9e7855ee447a605fb2e7f /nslcd | |
parent | 1bd7d97ffdc8004e4de27e85d91c804879026602 (diff) |
put external libraries at the end when linking
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1504 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd')
-rw-r--r-- | nslcd/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nslcd/Makefile.am b/nslcd/Makefile.am index 2f259dd..7a1d4c7 100644 --- a/nslcd/Makefile.am +++ b/nslcd/Makefile.am @@ -33,5 +33,6 @@ nslcd_SOURCES = nslcd.c ../nslcd.h ../common/nslcd-prot.h \ nsswitch.c \ alias.c ether.c group.c host.c netgroup.c network.c \ passwd.c protocol.c rpc.c service.c shadow.c pam.c -nslcd_LDADD = @nslcd_LIBS@ @PTHREAD_LIBS@ ../common/libtio.a ../common/libdict.a \ - ../common/libexpr.a ../compat/libcompat.a +nslcd_LDADD = ../common/libtio.a ../common/libdict.a \ + ../common/libexpr.a ../compat/libcompat.a \ + @nslcd_LIBS@ @PTHREAD_LIBS@ |