diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-11-23 14:08:41 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-11-23 14:08:41 +0000 |
commit | d805c5393e907fd9c72e9b94fd46910d2b13f582 (patch) | |
tree | fdf693c87e38f84a092821528129a26f86b423a2 /setuptools/command | |
parent | 8c581488b1b0fa21f65674c6dbab4745ff96e63a (diff) | |
parent | 3ec0769aac15f588159eb88433c1d942c0bf34d7 (diff) | |
download | python-setuptools-git-d805c5393e907fd9c72e9b94fd46910d2b13f582.tar.gz |
Improve clib builds reproducibility (#3679)
Diffstat (limited to 'setuptools/command')
-rw-r--r-- | setuptools/command/build_clib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_clib.py b/setuptools/command/build_clib.py index 67ce2444..09483e69 100644 --- a/setuptools/command/build_clib.py +++ b/setuptools/command/build_clib.py @@ -28,7 +28,7 @@ class build_clib(orig.build_clib): "in 'libraries' option (library '%s'), " "'sources' must be present and must be " "a list of source filenames" % lib_name) - sources = list(sources) + sources = sorted(list(sources)) log.info("building '%s' library", lib_name) |