diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-29 11:35:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 11:35:48 +0200 |
commit | 4af5c2a0093500b66a20c5da518884fe0a31f64c (patch) | |
tree | 77538363418bd2995d6dead0f0c8c709ecac43e2 /SConstruct | |
parent | b6c170165c09c24f0b3ae224e204ae62ac75c325 (diff) | |
parent | 83b856c0465c40ecd9768508f31d3e337e1a64e1 (diff) |
Merge pull request #21553 from bmwiedemann/sort
Sort list of input files
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 2cc486fd1b..3bbe97bfe7 100644 --- a/SConstruct +++ b/SConstruct @@ -23,7 +23,7 @@ platform_exporters = [] platform_apis = [] global_defaults = [] -for x in glob.glob("platform/*"): +for x in sorted(glob.glob("platform/*")): if (not os.path.isdir(x) or not os.path.exists(x + "/detect.py")): continue tmppath = "./" + x |