From d4cebac39744ef1b63ba792bd27815b5639e6543 Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 20 Oct 2009 11:13:54 +0000 Subject: [PATCH] Remove RUNTIME_PLATFORM stuff - this is now handled in dtool_platform.h --- makepanda/makepanda.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 365dbad274..26162d982e 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -37,7 +37,6 @@ THREADCOUNT=0 CFLAGS="" RUNTIME=0 RUNTIME_VERSION="dev" -RUNTIME_PLATFORM="other" DISTRIBUTOR="" PkgListSet(MAYAVERSIONS + MAXVERSIONS + DXVERSIONS + [ @@ -178,24 +177,6 @@ if (RUNTIME): elif (DISTRIBUTOR == ""): DISTRIBUTOR = "makepanda" -if (sys.platform.startswith("win")): - if (platform.architecture()[0] == "64bit"): - RUNTIME_PLATFORM = "win64" - else: - RUNTIME_PLATFORM = "win32" -elif (sys.platform.startswith("linux")): - if (platform.architecture()[0] == "64bit"): - RUNTIME_PLATFORM = "linux.amd64" - else: - RUNTIME_PLATFORM = "linux.i386" -elif (sys.platform == "darwin"): - RUNTIME_PLATFORM = "osx.fat" -elif (sys.platform.startswith("freebsd")): - if (platform.architecture()[0] == "64bit"): - RUNTIME_PLATFORM = "freebsd.amd64" - else: - RUNTIME_PLATFORM = "freebsd.i386" - ######################################################################## ## ## Load the dependency cache.