mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
Fix one last issue with debug dlls
This commit is contained in:
parent
0faaf90a06
commit
8380e55118
@ -75,7 +75,7 @@ elif (sys.platform.startswith("linux")):
|
|||||||
else:
|
else:
|
||||||
RUNTIME_PLATFORM = "linux.i386"
|
RUNTIME_PLATFORM = "linux.i386"
|
||||||
elif (sys.platform == "darwin"):
|
elif (sys.platform == "darwin"):
|
||||||
RUNTIME_PLATFORM = "osx.i386"
|
RUNTIME_PLATFORM = "osx.fat"
|
||||||
elif (sys.platform.startswith("freebsd")):
|
elif (sys.platform.startswith("freebsd")):
|
||||||
if (platform.architecture()[0] == "64bit"):
|
if (platform.architecture()[0] == "64bit"):
|
||||||
RUNTIME_PLATFORM = "freebsd.amd64"
|
RUNTIME_PLATFORM = "freebsd.amd64"
|
||||||
@ -889,7 +889,7 @@ def RunGenPyCode(target, inputs, opts):
|
|||||||
cmdstr += " -r"
|
cmdstr += " -r"
|
||||||
for i in inputs:
|
for i in inputs:
|
||||||
if (GetOrigExt(i)==".dll"):
|
if (GetOrigExt(i)==".dll"):
|
||||||
cmdstr += " " + os.path.basename(os.path.splitext(i)[0].replace(GetOutputDir()+"/lib/",""))
|
cmdstr += " " + os.path.basename(os.path.splitext(i)[0].replace("_d","").replace(GetOutputDir()+"/lib/",""))
|
||||||
|
|
||||||
oscmd(cmdstr)
|
oscmd(cmdstr)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user