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

This commit is contained in:
doko@ubuntu.com 2014-05-07 12:57:44 +02:00
parent e25244657c
commit e5de66eaa7
4 changed files with 25 additions and 14 deletions

View file

@ -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]