makewheel: don't try to resolve deps with absolute path

This commit is contained in:
rdb 2018-12-09 20:26:54 +01:00
parent a7752da4f1
commit a0af670dc7

View File

@ -304,6 +304,12 @@ class WheelFile(object):
# Temporary hack for 1.9, which had link deps on modules.
return
if sys.platform == "darwin" and dep.startswith("/System/"):
return
if dep.startswith('/'):
source_path = dep
else:
source_path = None
if search_path is None: