diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2014-05-07 02:44:42 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2014-05-07 02:44:42 (GMT) |
commit | 8577e5ae090dcd63447807e77c1dadc8be9602b9 (patch) | |
tree | 6cbb2c640dbd24b9dae617a49d576bd83d1f9f53 /Lib/distutils/tests | |
parent | 024c5eecbc52e6335be1f312437a59d144c4728a (diff) | |
download | cpython-8577e5ae090dcd63447807e77c1dadc8be9602b9.zip cpython-8577e5ae090dcd63447807e77c1dadc8be9602b9.tar.gz cpython-8577e5ae090dcd63447807e77c1dadc8be9602b9.tar.bz2 |
- Issue #17752: Fix distutils tests when run from the installed location.
Diffstat (limited to 'Lib/distutils/tests')
-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] |