From 24206682d7bc7c0fc101c44de951015ccd8e2dc7 Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Mon, 19 Dec 2016 19:37:22 -0500 Subject: [PATCH] Move external libdeps after our own If some external library lives in a directory in which Heimdal is already installed, we may pick up LD_LIBRARY_PATH Heimdal objects from a different release. Move the external deps to the end, to ensure a more appropriate LD_LIBRARY_PATH. --- lib/hdb/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hdb/Makefile.am b/lib/hdb/Makefile.am index 140d5d7ca..89969b495 100644 --- a/lib/hdb/Makefile.am +++ b/lib/hdb/Makefile.am @@ -41,12 +41,12 @@ CLEANFILES = $(BUILT_SOURCES) $(gen_files_hdb) \ hdb_asn1{,-priv}.h* hdb_asn1_files hdb_asn1-template.[cx] LDADD = libhdb.la \ - $(LIB_openldap) \ - $(LIB_libintl) \ ../krb5/libkrb5.la \ ../asn1/libasn1.la \ $(LIB_hcrypto) \ $(LIB_roken) \ + $(LIB_openldap) \ + $(LIB_libintl) \ $(LIB_ldopen) -- 2.11.4.GIT