From bf852d8bbfc2422994757b4dbce21edc12238eb1 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Tue, 2 Sep 2025 17:54:42 +0300 Subject: fixed parallel builds of the woman pages * There were two rules with independent targets, which could result in `.woman.tec` files to actually contain plain text. Practically all parallel builds were affected, among other things OBS-built packages where tutorial.woman.tec would usually be broken. * Now use the `&:` syntax for grouped targets. --- doc/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 5ef4110..11604a0 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -80,11 +80,11 @@ EXTRA_DIST += tutorial.ms.in CLEANFILES += $(women_DATA) -%.woman %.woman.tec : % sciteco.tmac grosciteco.tes +%.woman %.woman.tec &: % sciteco.tmac grosciteco.tes @GROFF@ @GROFF_FLAGS@ -wall -Z -Tutf8 -t -man -M@srcdir@ -msciteco $< | \ $(SCITECO_FULL) -im -- @srcdir@/grosciteco.tes $@ -tutorial.woman tutorial.woman.tec : tutorial.ms sciteco.tmac grosciteco.tes +tutorial.woman tutorial.woman.tec &: tutorial.ms sciteco.tmac grosciteco.tes @GROFF@ @GROFF_FLAGS@ -wall -Z -Tutf8 -t -ms -M@srcdir@ -msciteco $< | \ $(SCITECO_FULL) -im -- @srcdir@/grosciteco.tes $@ -- cgit v1.2.3