mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
- Issue #17752: Fix distutils tests when run from the installed location.
This commit is contained in:
parent
e25244657c
commit
e5de66eaa7
4 changed files with 25 additions and 14 deletions
|
|
@ -207,4 +207,4 @@ def fixup_build_ext(cmd):
|
|||
cmd.library_dirs = []
|
||||
else:
|
||||
name, equals, value = runshared.partition('=')
|
||||
cmd.library_dirs = value.split(os.pathsep)
|
||||
cmd.library_dirs = [d for d in value.split(os.pathsep) if d]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue