diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2014-05-07 10:57:44 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2014-05-07 10:57:44 (GMT) |
commit | e5de66eaa75c77ac1628f2408fc1238ec643288d (patch) | |
tree | 46a9b6300865d10093e5bff822d1431ea7459fd3 /Lib/distutils | |
parent | e25244657c5be459a98be06c745c35ff8a216c36 (diff) | |
download | cpython-e5de66eaa75c77ac1628f2408fc1238ec643288d.zip cpython-e5de66eaa75c77ac1628f2408fc1238ec643288d.tar.gz cpython-e5de66eaa75c77ac1628f2408fc1238ec643288d.tar.bz2 |
- Issue #17752: Fix distutils tests when run from the installed location.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py index 71ad4f4..7385c6b 100644 --- a/Lib/distutils/tests/support.py +++ b/Lib/distutils/tests/support.py @@ -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] |