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:
parent
f02587f7ac
commit
eda5364eb4
@ -191,7 +191,7 @@ https://msdn.microsoft.com/en-us/library/windows/desktop/dd391569(v=vs.85).aspx
|
||||
<Component Id="HelpFile_Component"
|
||||
Guid="$(var.HelpFile_Component_GUID)">
|
||||
<File Id="HelpFile_File"
|
||||
Source="..\doc\putty.chm" KeyPath="yes">
|
||||
Source="../doc/putty.chm" KeyPath="yes">
|
||||
<Shortcut Id="startmenuManual" Directory="ProgramMenuDir"
|
||||
Name="PuTTY Manual"
|
||||
Advertise="no" />
|
||||
@ -209,7 +209,7 @@ https://msdn.microsoft.com/en-us/library/windows/desktop/dd391569(v=vs.85).aspx
|
||||
<Component Id="LICENCE_Component"
|
||||
Guid="$(var.LICENCE_Component_GUID)">
|
||||
<File Id="LICENCE_File"
|
||||
Source="..\LICENCE" KeyPath="yes" />
|
||||
Source="../LICENCE" KeyPath="yes" />
|
||||
</Component>
|
||||
<Component Id="README_Component"
|
||||
Guid="$(var.README_Component_GUID)">
|
||||
|
Loading…
Reference in New Issue
Block a user