summaryrefslogtreecommitdiffstats
path: root/Lib/html
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-24 23:13:19 (GMT)
committerGitHub <noreply@github.com>2021-05-24 23:13:19 (GMT)
commit1c454eb2e4eb9e08ee94920c0e1ca7c8896371ec (patch)
tree8452f644eddaa2211e38f30fe6e1d52c6098f218 /Lib/html
parentd309bcc9e36adb2437a02550514df3efeb1b2343 (diff)
downloadcpython-1c454eb2e4eb9e08ee94920c0e1ca7c8896371ec.zip
cpython-1c454eb2e4eb9e08ee94920c0e1ca7c8896371ec.tar.gz
cpython-1c454eb2e4eb9e08ee94920c0e1ca7c8896371ec.tar.bz2
bpo-41282: Fix broken `make install` (GH-26329)
A previous commit broke a check in sysconfig when building cpython itself. This caused builds of the standard library modules to search a wrong location (the installed location rather than the source directory) for header files with the net effect that a ``make install`` incorrectly caused all extension modules to be rebuilt again and with incorrect include file paths. When building Python, we need two distinct "include" directories: - source .h files - install target for .h files Note that this doesn't matter except when building Python from source. Historically: - source .h files were in the distutils scheme under 'include' - the install directory was in the distutils.command.install scheme under 'headers' GH-24549 merged these; sysconfig is now the single source of truth and distutils is derived from it. This commit introduces a "secret" scheme path, 'headers', which contains the install target. It is only present when building Python. The distutils code uses it if present, and falls back to 'include'. Co-authored-by: Ned Deily <nad@python.org> (cherry picked from commit 563bd5a4dcc6a26e47966cb66db64859902bce76) Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Lib/html')
0 files changed, 0 insertions, 0 deletions