https://github.com/python/cpython/commit/3fd3b8a6780bb8a06d6d0a5a9cd96eafe8ac735c
commit: 3fd3b8a6780bb8a06d6d0a5a9cd96eafe8ac735c
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: Yhg1s <[email protected]>
date: 2024-09-29T18:25:09-07:00
summary:

[3.13] gh-123915: Ensure that Windows AMD64 and ARM64 release builds use 
different directories (GH-123918) (#123921)

gh-123915: Ensure that Windows AMD64 and ARM64 release builds use different 
directories (GH-123918)
(cherry picked from commit 00ffdf27367fb9aef247644a96f1a9ffb5be1efe)

Co-authored-by: adang1345 <[email protected]>

files:
A Misc/NEWS.d/next/Windows/2024-09-10-19-23-00.gh-issue-123915.yZMEDO.rst
M Tools/msi/buildrelease.bat

diff --git 
a/Misc/NEWS.d/next/Windows/2024-09-10-19-23-00.gh-issue-123915.yZMEDO.rst 
b/Misc/NEWS.d/next/Windows/2024-09-10-19-23-00.gh-issue-123915.yZMEDO.rst
new file mode 100644
index 00000000000000..026b09d3601272
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2024-09-10-19-23-00.gh-issue-123915.yZMEDO.rst
@@ -0,0 +1 @@
+Ensure that ``Tools\msi\buildrelease.bat`` uses different directories for 
AMD64 and ARM64 builds.
diff --git a/Tools/msi/buildrelease.bat b/Tools/msi/buildrelease.bat
index 839f6204d9e0b2..77fb4779208853 100644
--- a/Tools/msi/buildrelease.bat
+++ b/Tools/msi/buildrelease.bat
@@ -127,7 +127,7 @@ if "%1" EQU "x86" (
     set OUTDIR_PLAT=amd64
     set OBJDIR_PLAT=x64
 ) else if "%1" EQU "ARM64" (
-    set BUILD=%Py_OutDir%amd64\
+    set BUILD=%Py_OutDir%arm64\
     set PGO=%~2
     set BUILD_PLAT=ARM64
     set OUTDIR_PLAT=arm64

_______________________________________________
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]

Reply via email to