diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-05-02 22:23:27 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-05-02 22:23:27 (GMT) |
commit | 19694abd71150a4a86c97eb9e2d36859260fa907 (patch) | |
tree | ce3ce22bec3e84434469b8a451c714f049bd6e71 /Tools/msi/msi.props | |
parent | 7173dac61b183e2b100bc820a626b70f63ae0da7 (diff) | |
download | cpython-19694abd71150a4a86c97eb9e2d36859260fa907.zip cpython-19694abd71150a4a86c97eb9e2d36859260fa907.tar.gz cpython-19694abd71150a4a86c97eb9e2d36859260fa907.tar.bz2 |
Fixes Python failing to run during Windows release build
Diffstat (limited to 'Tools/msi/msi.props')
-rw-r--r-- | Tools/msi/msi.props | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Tools/msi/msi.props b/Tools/msi/msi.props index 6ca0332..bd22345 100644 --- a/Tools/msi/msi.props +++ b/Tools/msi/msi.props @@ -147,7 +147,9 @@ <_GenerateCommand>import uuid; print('\n'.join('{}={}'.format(i, uuid.uuid5(uuid.UUID('c8d9733e-a70c-43ff-ab0c-e26456f11083'), '$(ReleaseUri)' + j)) for i,j in [$(_Uuids.Replace(`"`,`'`))]))</_GenerateCommand> </PropertyGroup> - <Exec Command='"$(PythonExe)" -c "$(_GenerateCommand)" > "$(IntermediateOutputPath)$(OutputName)guids.txt"' IgnoreExitCode="false" /> + <Exec Command='"$(PythonExe)" -c "$(_GenerateCommand)" > "$(IntermediateOutputPath)$(OutputName)guids.txt"' + WorkingDirectory="$(MSBuildThisFileDirectory)" + IgnoreExitCode="false" /> <ReadLinesFromFile File="$(IntermediateOutputPath)$(OutputName)guids.txt"> <Output TaskParameter="Lines" ItemName="_UuidValue" /> |