From d018837d491b7c7a33a35cbcadb4b6da7066a3c6 Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Tue, 29 Nov 2016 17:17:08 -0600 Subject: [PATCH] Make.cidepends: sort .ci files before processing to make output reproducible Change-Id: I098d45229cfd0ce4c23f56bec7aaaff247390879 --- src/scripts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/Makefile b/src/scripts/Makefile index 9e4e9f6c68..d93a1b1e87 100644 --- a/src/scripts/Makefile +++ b/src/scripts/Makefile @@ -923,7 +923,7 @@ cidepends: charmxi /bin/cp -f $(CIDEPENDFILE) $(CIDEPENDFILE).old; \ fi; \ echo '#generated by make cidepends' > $(CIDEPENDFILE); \ - for cifile in $(wildcard *.ci); do \ + for cifile in $(sort $(wildcard *.ci)); do \ echo "checking generated modules for $$cifile" ; \ $(CHARMXI) -M $$cifile | sed '/\.stamp:/a \\t $$(CHARMC) -intrinsic $$< && touch $$@' >> $(CIDEPENDFILE) ; \ done -- 2.11.4.GIT