ref: fb396cd3d2613334f675e52bb6dda467457cf3c2
parent: bb915978db2cb925aa7cdfe7ac1ecf43a40dcb45
parent: 8f88f60637de1ce74746abc432e970da62c19049
author: Ethan Hugg <[email protected]>
date: Fri Mar 7 11:15:05 EST 2014
Merge pull request #455 from mstorsjo/mktargets-sort-files Explicitly sort the files in mktargets.py
--- a/build/mktargets.py
+++ b/build/mktargets.py
@@ -104,6 +104,11 @@
(cpp, asm, cfiles, sfiles) = find_sources()
+cpp = sorted(cpp, key=lambda s: s.lower())
+asm = sorted(asm, key=lambda s: s.lower())
+cfiles = sorted(cfiles, key=lambda s: s.lower())
+sfiles = sorted(sfiles, key=lambda s: s.lower())
+
f = open(OUTFILE, "w")