From 8011302cef1803e00df659f0878bb7397a52a614 Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 2 Jan 2010 10:10:29 +0000 Subject: [PATCH] Don't attempt to build PhysX on 64-bits linux --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index f9745b51b4..96eed22bec 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -1425,7 +1425,7 @@ def SdkLocatePhysX(): if folder.endswith("NVIDIA PhysX SDK\\%s\\SDKs\\" % key): SDK["PHYSX"] = folder SDK["PHYSXVERSION"] = ver - elif (sys.platform.startswith("linux")): + elif (sys.platform.startswith("linux") and platform.architecture()[0] != "64bit"): incpath = "/usr/include/PhysX/%s/SDKs" % key libpath = "/usr/lib/PhysX/%s" % key if (os.path.isdir(incpath) and os.path.isdir(libpath)):