https://github.com/python/cpython/commit/4efd20e23a1cafe442e663355ca3644c3904c945 commit: 4efd20e23a1cafe442e663355ca3644c3904c945 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: zooba <[email protected]> date: 2024-03-07T22:33:19Z summary:
gh-116472: Replace literal newlines with escape characters in MSBuild files (GH-116473) (cherry picked from commit 5d0cdfe519e6f35ccae1a1adca1ffd7fac10cee0) Co-authored-by: Dan Albert <[email protected]> files: M PCbuild/regen.targets diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets index af07adeca8812b..645656c81c9be7 100644 --- a/PCbuild/regen.targets +++ b/PCbuild/regen.targets @@ -116,9 +116,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> _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
