comparison setup.py @ 41953:d6e3c16d48ab

packaging: don't bundle DLLs in py2exe library.zip for x86 builds I had ported the x86/x64 behavior difference from the Inno Setup installer files. Why things were this way, I'm not sure. The WiX configuration files are expecting to have standalone DLL files for both configurations. And the 32-bit WiX installers were broken due to missing DLLs. Let's standardize on standalone DLL files on all configurations for consistency. I /think/ this will be faster, as I /think/ py2exe binaries would have to extract the DLL to a temporary file in order to load it. But I'm not 100% sure about that. Differential Revision: https://phab.mercurial-scm.org/D6135
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 14 Mar 2019 13:27:37 -0700
parents 5d9fdc9b0178
children e5ac701e5b7c
comparison
equal deleted inserted replaced
41952:b83de9150c1c 41953:d6e3c16d48ab
1362 package_data=packagedata, 1362 package_data=packagedata,
1363 cmdclass=cmdclass, 1363 cmdclass=cmdclass,
1364 distclass=hgdist, 1364 distclass=hgdist,
1365 options={ 1365 options={
1366 'py2exe': { 1366 'py2exe': {
1367 'bundle_files': 3,
1367 'dll_excludes': py2exedllexcludes, 1368 'dll_excludes': py2exedllexcludes,
1368 'excludes': py2exeexcludes, 1369 'excludes': py2exeexcludes,
1369 'packages': py2exepackages, 1370 'packages': py2exepackages,
1370 }, 1371 },
1371 'bdist_mpkg': { 1372 'bdist_mpkg': {