From: Kamalesh Babulal Date: Sat, 17 Sep 2022 14:05:06 +0000 (+0530) Subject: make: use DIST_SUBDIRS X-Git-Tag: v3.1.0~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48d49fbbe3eaf9c1ddd640f99cd8921752ab4e1d;p=thirdparty%2Flibcgroup.git 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 --- 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