https://github.com/python/cpython/commit/22c38a6f77577fe0018f53242a9d534725eed5ca commit: 22c38a6f77577fe0018f53242a9d534725eed5ca branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: zooba <[email protected]> date: 2024-03-07T22:16:32Z 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 d7cb6dbe72acea..e955d1eccb02c5 100644 --- a/PCbuild/regen.targets +++ b/PCbuild/regen.targets @@ -109,9 +109,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]
