##// END OF EJS Templates
wix: bump MSI based installers to use Python 2.7...
Steve Borho -
r17389:59581b66 stable
parent child Browse files
Show More
@@ -1,31 +1,31 b''
1 1 <?xml version="1.0" encoding="utf-8"?>
2 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 3
4 4 <?include guids.wxi ?>
5 5 <?include defines.wxi ?>
6 6
7 7 <Fragment>
8 8 <DirectoryRef Id="INSTALLDIR" FileSource="$(var.SourceDir)">
9 9 <Component Id="distOutput" Guid="$(var.dist.guid)" Win64='$(var.IsX64)'>
10 10 <File Name="library.zip" KeyPath="yes" />
11 11 <File Name="mercurial.base85.pyd" />
12 12 <File Name="mercurial.bdiff.pyd" />
13 13 <File Name="mercurial.diffhelpers.pyd" />
14 14 <File Name="mercurial.mpatch.pyd" />
15 15 <File Name="mercurial.osutil.pyd" />
16 16 <File Name="mercurial.parsers.pyd" />
17 17 <File Name="pyexpat.pyd" />
18 <File Name="python26.dll" />
18 <File Name="python27.dll" />
19 19 <File Name="bz2.pyd" />
20 20 <File Name="select.pyd" />
21 21 <File Name="unicodedata.pyd" />
22 22 <File Name="_ctypes.pyd" />
23 23 <File Name="_elementtree.pyd" />
24 24 <File Name="_hashlib.pyd" />
25 25 <File Name="_socket.pyd" />
26 26 <File Name="_ssl.pyd" />
27 27 </Component>
28 28 </DirectoryRef>
29 29 </Fragment>
30 30
31 31 </Wix>
General Comments 0
You need to be logged in to leave comments. Login now