Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0d2a9088
Commit
0d2a9088
authored
Nov 04, 2017
by
Steve Dower
Committed by
GitHub
Nov 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-31944: Fixes build and Modify button (#4278)
parent
aafece7a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
Misc/NEWS.d/next/Windows/2017-11-04-15-29-47.bpo-31944.0Bx8tZ.rst
...S.d/next/Windows/2017-11-04-15-29-47.bpo-31944.0Bx8tZ.rst
+1
-0
PCbuild/pyproject.props
PCbuild/pyproject.props
+1
-0
PCbuild/python.props
PCbuild/python.props
+2
-2
Tools/msi/bundle/bootstrap/pythonba.vcxproj
Tools/msi/bundle/bootstrap/pythonba.vcxproj
+4
-2
Tools/msi/bundle/bundle.wxs
Tools/msi/bundle/bundle.wxs
+0
-1
No files found.
Misc/NEWS.d/next/Windows/2017-11-04-15-29-47.bpo-31944.0Bx8tZ.rst
0 → 100644
View file @
0d2a9088
Fixes Modify button in Apps and Features dialog.
PCbuild/pyproject.props
View file @
0d2a9088
...
...
@@ -7,6 +7,7 @@
<OutDir
Condition=
"!HasTrailingSlash($(OutDir))"
>
$(OutDir)\
</OutDir>
<Py_IntDir
Condition=
"'$(Py_IntDir)' == ''"
>
$(MSBuildThisFileDirectory)obj\
</Py_IntDir>
<IntDir>
$(Py_IntDir)\$(MajorVersionNumber)$(MinorVersionNumber)$(ArchName)_$(Configuration)\$(ProjectName)\
</IntDir>
<IntDir>
$(IntDir.Replace(`\\`, `\`))
</IntDir>
<TargetName
Condition=
"'$(TargetName)' == ''"
>
$(ProjectName)
</TargetName>
<TargetName>
$(TargetName)$(PyDebugExt)
</TargetName>
<GenerateManifest>
false
</GenerateManifest>
...
...
PCbuild/python.props
View file @
0d2a9088
...
...
@@ -73,8 +73,8 @@
possible version). Since we limit WINVER to Windows 7 anyway, it doesn't really
matter which WinSDK version we use.
-->
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)
=
= '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)
=
= '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)
>
= '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)
>
= '10.0.15063'"
>
10.0.15063.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.14393'"
>
10.0.14393.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.14393'"
>
10.0.14393.0
</DefaultWindowsSDKVersion>
<DefaultWindowsSDKVersion
Condition=
"$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10586'"
>
10.0.10586.0
</DefaultWindowsSDKVersion>
...
...
Tools/msi/bundle/bootstrap/pythonba.vcxproj
View file @
0d2a9088
...
...
@@ -26,12 +26,14 @@
<ProjectGuid>
{7A09B132-B3EE-499B-A700-A4B2157FEA3D}
</ProjectGuid>
<TargetName>
PythonBA
</TargetName>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<Import
Project=
"..\..\wix.props"
/>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Label=
"Configuration"
>
<ConfigurationType>
DynamicLibrary
</ConfigurationType>
<CharacterSet>
Unicode
</CharacterSet>
<IntDir>
$(Py_IntDir)\$(Configuration)_$(Platform)_Setup\Bootstrap\
</IntDir>
<Py_IntDir
Condition=
"'$(Py_IntDir)' == ''"
>
$(PySourcePath)PCbuild\obj\
</Py_IntDir>
<IntDir>
$(Py_IntDir)\$(MajorVersionNumber)$(MinorVersionNumber)$(ArchName)_$(Configuration)\msi_$(ProjectName)\
</IntDir>
<IntDir>
$(IntDir.Replace(`\\`, `\`))
</IntDir>
<OutDir>
$(IntDir)
</OutDir>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
...
...
Tools/msi/bundle/bundle.wxs
View file @
0d2a9088
...
...
@@ -8,7 +8,6 @@
IconSourceFile=
"..\..\..\PC\icons\setup.ico"
Manufacturer=
"!(loc.Manufacturer)"
AboutUrl=
"http://www.python.org/"
DisableModify=
"button"
Compressed=
"no"
dep:ProviderKey=
"CPython-$(var.MajorVersionNumber).$(var.MinorVersionNumber)$(var.PyArchExt)$(var.PyTestExt)"
>
<BootstrapperApplication
Id=
"PythonBA"
SourceFile=
"$(var.BootstrapApp)"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment