diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-01-18 22:09:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 22:09:36 (GMT) |
commit | 2507e29a9e4e9dcac6eab46546bd3d34a69342ba (patch) | |
tree | ef70d7947b2af25233400e1496b349caf384a2b4 /Tools/msi | |
parent | fa7880604191f81cbdddc191216f7b1e39a74d8d (diff) | |
download | cpython-2507e29a9e4e9dcac6eab46546bd3d34a69342ba.zip cpython-2507e29a9e4e9dcac6eab46546bd3d34a69342ba.tar.gz cpython-2507e29a9e4e9dcac6eab46546bd3d34a69342ba.tar.bz2 |
bpo-32588: Move _findvs into its own module and add missing _queue module to installer (#5227)
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/lib/lib_files.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/lib/lib_files.wxs b/Tools/msi/lib/lib_files.wxs index fa0da3a..5a72612 100644 --- a/Tools/msi/lib/lib_files.wxs +++ b/Tools/msi/lib/lib_files.wxs @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> - <?define exts=pyexpat;select;unicodedata;winsound;_bz2;_elementtree;_socket;_ssl;_msi;_ctypes;_hashlib;_multiprocessing;_lzma;_decimal;_overlapped;_sqlite3;_asyncio ?> + <?define exts=pyexpat;select;unicodedata;winsound;_bz2;_elementtree;_socket;_ssl;_msi;_ctypes;_hashlib;_multiprocessing;_lzma;_decimal;_overlapped;_sqlite3;_asyncio;_queue;_distutils_findvs ?> <Fragment> <ComponentGroup Id="lib_extensions"> <?foreach ext in $(var.exts)?> |