1
0
Fork 0

Makefile.am reproducibility (test cases)

This is not strictly necessary (since order-modules does it), but let's be safe.
master
Mike Gerwitz 2015-12-22 10:41:34 -05:00
parent e328445e5d
commit bb1ea6c476
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
1 changed files with 2 additions and 2 deletions

View File

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