diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-10-19 10:38:08 -0400 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-10-19 10:38:08 -0400 |
commit | f5913d6fa0ad99c5a396c8bfac06b5bbefac5c26 (patch) | |
tree | ad087e3f28f955644fd078462c45746fca680d82 /build-aux | |
parent | 9cce2b15421068c563e8ea3ab2ec777f0c6b6512 (diff) | |
download | tame-f5913d6fa0ad99c5a396c8bfac06b5bbefac5c26.tar.gz tame-f5913d6fa0ad99c5a396c8bfac06b5bbefac5c26.tar.bz2 tame-f5913d6fa0ad99c5a396c8bfac06b5bbefac5c26.zip |
build-aux/Makefile.am: Correct program_fragments sorting
The sorting is intended to remove nondeterminism.
This fixes 9cce2b15.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/Makefile.am b/build-aux/Makefile.am index 91ef736..f6f41ae 100644 --- a/build-aux/Makefile.am +++ b/build-aux/Makefile.am @@ -58,8 +58,8 @@ dest_c1map := $(patsubst \ program_fragments=$(shell \ find $(path_ui)/program/ -name '*.xml' 2>/dev/null \ - | tr '\n' ' ' \ | LC_ALL=C sort \ + | tr '\n' ' ' \ ) compiled_suppliers := $(src_suppliers:.xml=.xmlo) |