Commit 19565334 authored by doko@ubuntu.com's avatar doko@ubuntu.com

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

parent fd9aa757
......@@ -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]
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