Commit 2c23f7ac authored by doko@ubuntu.com's avatar doko@ubuntu.com

- Issue #17752: Fix distutils tests when run from the installed location.

parents 84b76498 ddf2ea79
...@@ -207,4 +207,4 @@ def fixup_build_ext(cmd): ...@@ -207,4 +207,4 @@ def fixup_build_ext(cmd):
cmd.library_dirs = [] cmd.library_dirs = []
else: else:
name, equals, value = runshared.partition('=') 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]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment