From: Ondřej Surý Date: Wed, 1 Jun 2022 07:02:10 +0000 (+0200) Subject: Don't list libtest.la headers in HEADERS variable X-Git-Tag: v9.19.2~6^2~1 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=714fe2f6173f57cdb45449e8816facf8ea8f868d;p=thirdparty%2Fbind9.git Don't list libtest.la headers in HEADERS variable The libtest.la headers were installed in very weird place, in fact, we don't need to list them in the HEADERS variable, listing them in SOURCES is enough for autotools to figure out how to compile the convenience library. --- diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am index 2699f4bfcff..6bd4b803407 100644 --- a/tests/libtest/Makefile.am +++ b/tests/libtest/Makefile.am @@ -14,13 +14,10 @@ LDADD += \ check_LTLIBRARIES = libtest.la -noinst_libtest_ladir = .. -noinst_libtest_la_HEADERS = \ +libtest_la_SOURCES = \ ../include/tests/dns.h \ ../include/tests/isc.h \ - ../include/tests/ns.h -libtest_la_SOURCES = \ - $(noinst_libtest_la_HEADERS) \ + ../include/tests/ns.h \ dns.c \ isc.c \ ns.c