From 48d49fbbe3eaf9c1ddd640f99cd8921752ab4e1d Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Sat, 17 Sep 2022 19:35:06 +0530 Subject: [PATCH] make: use DIST_SUBDIRS As per automake manual[1], DIST_SUBDIRS should be used to recurse into the subdirectories those we want to ship as part of make dist and use SUBDIRS for conditionally building the directories. Adopt this rule across the source. [1] https://www.gnu.org/software/automake/manual/html_node/SUBDIRS-vs-DIST_005fSUBDIRS.html Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index b23ba5d8..396d941a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1 +1 @@ -SUBDIRS = ftests gunit +DIST_SUBDIRS = ftests gunit -- 2.47.3