mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
makewheel: don't try to resolve deps with absolute path
This commit is contained in:
parent
a7752da4f1
commit
a0af670dc7
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user