mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 01:07:51 -04:00
Linker fix for PC-BSD
This commit is contained in:
parent
d4b9a332cc
commit
48d4bf4fb8
@ -1138,6 +1138,10 @@ def CheckLinkerLibraryPath():
|
||||
os.environ["DYLD_LIBRARY_PATH"] = builtlib + ":" + os.environ["DYLD_LIBRARY_PATH"]
|
||||
else:
|
||||
os.environ["DYLD_LIBRARY_PATH"] = builtlib
|
||||
|
||||
# Workaround around compile issue on PCBSD
|
||||
if (platform.uname()[1]=="pcbsd"):
|
||||
os.environ["LD_LIBRARY_PATH"] += ":/usr/PCBSD/local/lib"
|
||||
|
||||
########################################################################
|
||||
##
|
||||
|
Loading…
x
Reference in New Issue
Block a user