From bb1ea6c4766b813e4a0495879df5f04f66b0db35 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 22 Dec 2015 10:41:34 -0500 Subject: [PATCH] Makefile.am reproducibility (test cases) This is not strictly necessary (since order-modules does it), but let's be safe. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4e8be37..c3cf013 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,8 +34,8 @@ path_combine_output_full_min = $(path_combine_output_full:.js=.min.js) src_js = @SRC_JS@ path_externs_internal = $(path_build)/externs-internal.js -test_cases=$(shell cd test/ && find . -name '*Test.*' | tr '\n' ' ' ) -src_tests=$(shell find test/ -name test-* | tr '\n' ' ' ) +test_cases=$(shell cd test/ && find . -name '*Test.*' | tr '\n' ' ' | LC_ALL=C sort ) +src_tests=$(shell find test/ -name test-* | tr '\n' ' ' | LC_ALL=C sort ) combine = $(path_tools)/combine compiler = @CCJAR@