From f53e7ed12c9adf83f9c16ff750e79737fc74ac62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Fri, 19 Feb 2021 12:53:36 +0100 Subject: [PATCH] Include lib/isc/tls_p.h in release tarballs The addition of lib/isc/tls_p.h to the source tree was not accounted for in the relevant variable in lib/isc/Makefile.am and thus the former file is not being included in release tarballs prepared using "make dist". Fix by tweaking the libisc_la_SOURCES list in lib/isc/Makefile.am accordingly. --- lib/isc/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/isc/Makefile.am b/lib/isc/Makefile.am index 58438d5c5e..3d2e891db2 100644 --- a/lib/isc/Makefile.am +++ b/lib/isc/Makefile.am @@ -221,7 +221,8 @@ libisc_la_SOURCES = \ entropy_private.h \ fsaccess_common_p.h \ mem_p.h \ - task_p.h + task_p.h \ + tls_p.h libisc_la_CPPFLAGS = \ $(AM_CPPFLAGS) \