diff options
author | Steve Dower <steve.dower@microsoft.com> | 2019-02-05 01:15:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-05 01:15:13 (GMT) |
commit | 85e102a2b090dd693d0801ae2edb9660cfa0f281 (patch) | |
tree | 0735adb3d875561dd3f6f266253db336fb122788 /Tools | |
parent | 69091cb497b2f0fe7e2789b30b43cf78caf9de9b (diff) | |
download | cpython-85e102a2b090dd693d0801ae2edb9660cfa0f281.zip cpython-85e102a2b090dd693d0801ae2edb9660cfa0f281.tar.gz cpython-85e102a2b090dd693d0801ae2edb9660cfa0f281.tar.bz2 |
bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/dev/dev.wixproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/msi/dev/dev.wixproj b/Tools/msi/dev/dev.wixproj index bc3a19c..4a56cec 100644 --- a/Tools/msi/dev/dev.wixproj +++ b/Tools/msi/dev/dev.wixproj @@ -21,7 +21,8 @@ <EmbeddedResource Include="*.wxl" /> </ItemGroup> <ItemGroup> - <InstallFiles Include="$(PySourcePath)include\**\*.h"> + <InstallFiles Include="$(PySourcePath)include\**\*.h" + Exclude="$(PySourcePath)include\pyconfig.h"> <SourceBase>$(PySourcePath)</SourceBase> <Source>!(bindpath.src)</Source> <TargetBase>$(PySourcePath)</TargetBase> |