aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-03-07 23:16:32 +0100
committerDan Albert <danalbert@google.com>2024-03-12 20:02:11 +0000
commitbb6b562da7dac38077ea6eecf7dbf4b763bb8202 (patch)
treeebc675b9b92376ac337086696a6ccbc0bb027e3a
parent148401db314f2e4f23a771aac82ad8d4b6139a28 (diff)
downloadcpython3-master.tar.gz
gh-116472: Replace literal newlines with escape characters in MSBuild files (GH-116473)HEADmastermain
(cherry picked from commit 5d0cdfe519e6f35ccae1a1adca1ffd7fac10cee0) Co-authored-by: Dan Albert <dan@gingerhq.net> (cherry picked from commit 22c38a6f77577fe0018f53242a9d534725eed5ca) Change-Id: I3767a0e13027ede5216e9db9ba87dc3730deaae1
-rw-r--r--PCbuild/regen.targets4
1 files changed, 1 insertions, 3 deletions
diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets
index 24b5ced1de..342c2d4b14 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>