From: Ondřej Surý Date: Wed, 23 Aug 2023 05:40:20 +0000 (+0200) Subject: Regenerate the DTrace generated files on configure change X-Git-Tag: v9.19.17~38^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b6db95e70641490325dbcef81674587e8b54832;p=thirdparty%2Fbind9.git Regenerate the DTrace generated files on configure change The DTrace generated files were missing dependency on the Makefile, so they didn't get regenerated when ./configure was re-run. This would create problem especially between ./configure --enable-tracing vs ./configure --disable-tracing invocations. --- diff --git a/Makefile.dtrace b/Makefile.dtrace index b5c9ebc4d5a..9cb6b002b92 100644 --- a/Makefile.dtrace +++ b/Makefile.dtrace @@ -8,9 +8,9 @@ AM_V_DTRACE_0 = @echo " DTRACE $@"; BUILT_SOURCES += probes.h CLEANFILES += probes.h probes.o -probes.h: probes.d +probes.h: Makefile probes.d $(AM_V_DTRACE)$(DTRACE) -s $(srcdir)/probes.d -h -o $@ -probes.lo: probes.d $(DTRACE_DEPS) +probes.lo: Makefile probes.d $(DTRACE_DEPS) $(AM_V_DTRACE)$(LIBTOOL) --mode=compile --tag=CC $(DTRACE) -s $(srcdir)/probes.d -G -o $@ $(DTRACE_OBJS) if HAVE_DTRACE