mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix for issue #8577: without this patch test_distutils
will fail when builddir != srcdir (that is, when you run configure in a directory that is not the top of the source tree).
This commit is contained in:
parent
cb532f13e3
commit
e41a19e71a
2 changed files with 5 additions and 4 deletions
|
@ -302,8 +302,8 @@ class install(Command):
|
|||
# about needing recursive variable expansion (shudder).
|
||||
|
||||
py_version = sys.version.split()[0]
|
||||
prefix, exec_prefix, srcdir = get_config_vars('prefix', 'exec_prefix',
|
||||
'srcdir')
|
||||
prefix, exec_prefix, srcdir, projectbase = get_config_vars('prefix', 'exec_prefix',
|
||||
'srcdir', 'projectbase')
|
||||
|
||||
self.config_vars = {'dist_name': self.distribution.get_name(),
|
||||
'dist_version': self.distribution.get_version(),
|
||||
|
@ -316,6 +316,7 @@ class install(Command):
|
|||
'sys_exec_prefix': exec_prefix,
|
||||
'exec_prefix': exec_prefix,
|
||||
'srcdir': srcdir,
|
||||
'projectbase': projectbase,
|
||||
}
|
||||
|
||||
self.config_vars['userbase'] = self.install_userbase
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue