From f3932c268e3fd599866560f4f037df1fab50d581 Mon Sep 17 00:00:00 2001 From: Koji Builder Date: Sat, 11 Jul 2020 16:22:48 +0100 Subject: [PATCH] Paralell build fix #7 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit All source soce files which first needs to be generated needs to be listed in BUILT_SOURCES. This patch adds to that automake variable parse.c and parse.h because they are listed below in libcgroup_la_SOURCES. Documentetion of the BUILT_SOURCES is on: https://www.gnu.org/software/automake/manual/html_node/Sources.html Reported-by: Tomasz Kłoczko Signed-off-by: Tomasz Kłoczko --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 9fc965ba..9de48223 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,7 @@ @CODE_COVERAGE_RULES@ +BUILT_SOURCES = parse.c parse.h + if WITH_BINDINGS BINDINGS_SUBDIR = bindings endif -- 2.47.2