mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
Sort almost all usages of glob.glob for reproducible output
This will help diff-ing logs between invocations to see what is changing when refactoring. When used for creating an archive, it will help creating a reproducible file.
This commit is contained in:
2
setup.py
2
setup.py
@@ -156,7 +156,7 @@ def _cleanup_symlinks(cmd):
|
||||
#
|
||||
build_lib = cmd.get_finalized_command('build').build_lib
|
||||
build_lib = opj(build_lib, 'wx')
|
||||
for libname in glob.glob(opj(build_lib, 'libwx*')):
|
||||
for libname in sorted(glob.glob(opj(build_lib, 'libwx*'))):
|
||||
|
||||
if os.path.islink(libname):
|
||||
if isDarwin:
|
||||
|
||||
Reference in New Issue
Block a user