gh-116472: Replace literal newlines with escape characters in MSBuild files (GH-116473) am: bb6b562da7 am: ac8a72a99c
Original change: https://android-review.googlesource.com/c/platform/external/python/cpython3/+/2999960
Change-Id: Ic66942621526472430b9544f7aa418a81eaa4256
Signed-off-by: Automerger Merge Worker <[email protected]>
diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets
index 24b5ced..342c2d4 100644
--- a/PCbuild/regen.targets
+++ b/PCbuild/regen.targets
@@ -108,9 +108,7 @@
Condition="($(Platform) == 'Win32' or $(Platform) == 'x64') and
$(Configuration) != 'PGInstrument' and $(Configuration) != 'PGUpdate'">
<Message Text="Regenerate @(_TestFrozenOutputs->'%(Filename)%(Extension)', ' ')" Importance="high" />
- <Exec Command='setlocal
-set PYTHONPATH=$(PySourcePath)Lib
-"$(PythonExe)" Programs\freeze_test_frozenmain.py Programs\test_frozenmain.h'
+ <Exec Command='setlocal%0D%0Aset PYTHONPATH=$(PySourcePath)Lib%0D%0A"$(PythonExe)" Programs\freeze_test_frozenmain.py Programs\test_frozenmain.h'
WorkingDirectory="$(PySourcePath)" />
</Target>