From 9faebccaa2b3966615d5eb58fa247344059a2ae4 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 15 Aug 2017 13:40:48 -0400 Subject: [PATCH] Sort comps in `make all` Signed-off-by: Stephen Gallagher --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1397d36c..179a2c61 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ XMLINFILES=$(wildcard *.xml.in) XMLFILES = $(patsubst %.xml.in,%.xml,$(XMLINFILES)) -all: po $(XMLFILES) +all: po $(XMLFILES) sort po: $(XMLINFILES) make -C po -f Makefile || exit 1