Changeset f36ac04 in mainline


Ignore:
Timestamp:
2017-11-01T14:54:44Z (6 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b63b02e
Parents:
3654684
Message:

Revert sorting of zip file entries.

I did not realize the system depends on the input ordering. Unbreaks
several architectures.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/mkarray.py

    r3654684 rf36ac04  
    8181        archive = zipfile.ZipFile("%s.zip" % dest, "w", zipfile.ZIP_STORED)
    8282       
    83         for src in sorted(sys.argv[5:]):
     83        for src in sys.argv[5:]:
    8484                basename = os.path.basename(src)
    8585                plainname = os.path.splitext(basename)[0]
Note: See TracChangeset for help on using the changeset viewer.