From 746e9809a835d542a0a908a9c0291b56566dd98a Mon Sep 17 00:00:00 2001 From: Matthijs Mekking Date: Tue, 10 Oct 2023 14:18:07 +0200 Subject: [PATCH] Fix build error related to USDT The trace.h file is listed twice in the Makefile. This incidentally caused an error where the build refused to replace an earlier placed trace.h file. --- lib/dns/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/dns/Makefile.am b/lib/dns/Makefile.am index b6814bd7ed..27a5f14ddb 100644 --- a/lib/dns/Makefile.am +++ b/lib/dns/Makefile.am @@ -125,10 +125,9 @@ libdns_la_HEADERS = \ include/dns/ssu.h \ include/dns/stats.h \ include/dns/time.h \ - include/dns/trace.h \ - include/dns/transport.h \ include/dns/tkey.h \ include/dns/trace.h \ + include/dns/transport.h \ include/dns/tsig.h \ include/dns/ttl.h \ include/dns/types.h \