From: Aki Tuomi Date: Sat, 30 Dec 2017 18:42:21 +0000 (+0200) Subject: pdns: Fix dependency tracking for backends X-Git-Tag: dnsdist-1.3.0~171^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F6127%2Fhead;p=thirdparty%2Fpdns.git pdns: Fix dependency tracking for backends Injects moduleobjects to dependency tracking. This fixes issue where pdns_server did not recompile after backend object(s) were changed. --- diff --git a/pdns/Makefile.am b/pdns/Makefile.am index 13ec929a17..0aa9478746 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -224,6 +224,7 @@ pdns_server_LDFLAGS = \ $(DYNLINKFLAGS) \ $(LIBCRYPTO_LDFLAGS) +EXTRA_pdns_server_DEPENDENCIES = @moduleobjects@ pdns_server_LDADD = \ @moduleobjects@ \ @modulelibs@ \ @@ -323,6 +324,7 @@ pdnsutil_LDFLAGS = \ $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \ $(LIBCRYPTO_LDFLAGS) +EXTRA_pdnsutil_DEPENDENCIES = @moduleobjects@ pdnsutil_LDADD = \ @moduleobjects@ \ @modulelibs@ \