diff options
| author | Glenn Morris | 2017-09-01 18:27:31 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-09-01 18:27:31 -0400 |
| commit | 44c971bb67f7eb30ea6d078551b1815b57dcdeed (patch) | |
| tree | fcb66b49b6445a597d3ec1832671dfa4ba858644 | |
| parent | 55ac7505a094c7c3d9ee28c7668a0179a072b889 (diff) | |
| download | emacs-44c971bb67f7eb30ea6d078551b1815b57dcdeed.tar.gz emacs-44c971bb67f7eb30ea6d078551b1815b57dcdeed.zip | |
* test/Makefile.in (ELFILES): Sort, for a reproducible order.
| -rw-r--r-- | test/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 34d74d41cbb..0c3d3601d74 100644 --- a/test/Makefile.in +++ b/test/Makefile.in | |||
| @@ -156,11 +156,11 @@ else | |||
| 156 | maybe_exclude_module_tests := -name emacs-module-tests.el -prune -o | 156 | maybe_exclude_module_tests := -name emacs-module-tests.el -prune -o |
| 157 | endif | 157 | endif |
| 158 | 158 | ||
| 159 | ELFILES := $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \ | 159 | ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \ |
| 160 | -path "${srcdir}/data" -prune -o \ | 160 | -path "${srcdir}/data" -prune -o \ |
| 161 | -name "*resources" -prune -o \ | 161 | -name "*resources" -prune -o \ |
| 162 | ${maybe_exclude_module_tests} \ | 162 | ${maybe_exclude_module_tests} \ |
| 163 | -name "*.el" ! -name ".*" -print) | 163 | -name "*.el" ! -name ".*" -print)) |
| 164 | ## .log files may be in a different directory for out of source builds | 164 | ## .log files may be in a different directory for out of source builds |
| 165 | LOGFILES := $(patsubst %.el,%.log, \ | 165 | LOGFILES := $(patsubst %.el,%.log, \ |
| 166 | $(patsubst $(srcdir)/%,%,$(ELFILES))) | 166 | $(patsubst $(srcdir)/%,%,$(ELFILES))) |