1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Use / in pathnames in the Wix installer source.

I've also been experimenting recently with running Wix on Linux under
Mono, rather than running it on Windows in the obvious way. Wix under
Mono insists on forward slashes in pathnames, and it turns out that
Wix on Windows doesn't object to them either, so I can safely change
them over unconditionally and then my installer source will work in
both modes.
This commit is contained in:
Simon Tatham 2017-05-25 08:22:22 +01:00
parent f02587f7ac
commit eda5364eb4

View File

@ -191,7 +191,7 @@ https://msdn.microsoft.com/en-us/library/windows/desktop/dd391569(v=vs.85).aspx
<Component Id="HelpFile_Component" <Component Id="HelpFile_Component"
Guid="$(var.HelpFile_Component_GUID)"> Guid="$(var.HelpFile_Component_GUID)">
<File Id="HelpFile_File" <File Id="HelpFile_File"
Source="..\doc\putty.chm" KeyPath="yes"> Source="../doc/putty.chm" KeyPath="yes">
<Shortcut Id="startmenuManual" Directory="ProgramMenuDir" <Shortcut Id="startmenuManual" Directory="ProgramMenuDir"
Name="PuTTY Manual" Name="PuTTY Manual"
Advertise="no" /> Advertise="no" />
@ -209,7 +209,7 @@ https://msdn.microsoft.com/en-us/library/windows/desktop/dd391569(v=vs.85).aspx
<Component Id="LICENCE_Component" <Component Id="LICENCE_Component"
Guid="$(var.LICENCE_Component_GUID)"> Guid="$(var.LICENCE_Component_GUID)">
<File Id="LICENCE_File" <File Id="LICENCE_File"
Source="..\LICENCE" KeyPath="yes" /> Source="../LICENCE" KeyPath="yes" />
</Component> </Component>
<Component Id="README_Component" <Component Id="README_Component"
Guid="$(var.README_Component_GUID)"> Guid="$(var.README_Component_GUID)">