From 0f49ee5f746592352b6ac26449e87339cc3702a8 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Tue, 17 Dec 2024 10:21:45 +0100 Subject: [PATCH] Fix build error for missing commit.h Add the target commit.h as a dependency of version.o, so it gets generated before being included in version.cc, otherwise when doing a parallel build it can fail. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 9943b088..b2c7e28a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -140,7 +140,7 @@ dillo_SOURCES = \ # https://www.gnu.org/software/automake/manual/html_node/Built-Sources-Example.html nodist_dillo_SOURCES = commit.h -dillo.$(OBJEXT): commit.h +version.$(OBJEXT) dillo.$(OBJEXT): commit.h CLEANFILES = commit.h if GIT_AVAILABLE