From ffa1fbf07f9fce02b38db71b4231313ad49696c9 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 29 Sep 2023 09:25:21 -0400 Subject: [PATCH] Ensure that ELN comps are regenerated Because the ELN comps are handled differently, they don't automatically get included in the XMLINFILES and XMLFILES globs. This patch ensures that they are properly generated when running `make all`. Fixes: https://github.com/fedora-eln/eln/issues/161 Signed-off-by: Stephen Gallagher --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d533b63..55452a2e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ XMLINFILES=$(wildcard *.xml.in) XMLFILES = $(patsubst %.xml.in,%.xml,$(XMLINFILES)) -all: po $(XMLFILES) sort +all: comps-eln.xml.in po $(XMLFILES) comps-eln.xml sort po: $(XMLINFILES) make -C po -f Makefile || exit 1