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 <sgallagh@redhat.com>
This commit is contained in:
Stephen Gallagher 2023-09-29 09:25:21 -04:00
parent d204fe752e
commit ffa1fbf07f

View File

@ -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