Linker fix for PC-BSD

This commit is contained in:
rdb 2009-08-08 10:23:06 +00:00
parent d4b9a332cc
commit 48d4bf4fb8

View File

@ -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"
########################################################################
##