summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2021-09-24 20:35:47 (GMT)
committerGitHub <noreply@github.com>2021-09-24 20:35:47 (GMT)
commit7c801e0fa603b155eab3fd19698aa90854ac5a7b (patch)
treeb949ff73ff706412848c8c3a2f67c85fa105716c /PCbuild
parentbfe26bbad787c124f0ce144cff1b513ef9d2dc9c (diff)
downloadcpython-7c801e0fa603b155eab3fd19698aa90854ac5a7b.zip
cpython-7c801e0fa603b155eab3fd19698aa90854ac5a7b.tar.gz
cpython-7c801e0fa603b155eab3fd19698aa90854ac5a7b.tar.bz2
bpo-45020: Fix some corner cases for frozen module generation. (gh-28538)
This also includes some cleanup in preparation for a PR to make the "make all" output less noisy. https://bugs.python.org/issue45020
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/_freeze_module.vcxproj8
1 files changed, 4 insertions, 4 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj
index 382351c..ea6532d 100644
--- a/PCbuild/_freeze_module.vcxproj
+++ b/PCbuild/_freeze_module.vcxproj
@@ -232,13 +232,13 @@
<!-- BEGIN frozen modules -->
<None Include="..\Lib\importlib\_bootstrap.py">
<ModName>importlib._bootstrap</ModName>
- <IntFile>$(IntDir)importlib__bootstrap.g.h</IntFile>
- <OutFile>$(PySourcePath)Python\frozen_modules\importlib__bootstrap.h</OutFile>
+ <IntFile>$(IntDir)importlib._bootstrap.g.h</IntFile>
+ <OutFile>$(PySourcePath)Python\frozen_modules\importlib._bootstrap.h</OutFile>
</None>
<None Include="..\Lib\importlib\_bootstrap_external.py">
<ModName>importlib._bootstrap_external</ModName>
- <IntFile>$(IntDir)importlib__bootstrap_external.g.h</IntFile>
- <OutFile>$(PySourcePath)Python\frozen_modules\importlib__bootstrap_external.h</OutFile>
+ <IntFile>$(IntDir)importlib._bootstrap_external.g.h</IntFile>
+ <OutFile>$(PySourcePath)Python\frozen_modules\importlib._bootstrap_external.h</OutFile>
</None>
<None Include="..\Lib\zipimport.py">
<ModName>zipimport</ModName>