Browse Source

don't disable pandatool entirely in rtdist build

rdb 14 years ago
parent
commit
99c71cef31
1 changed files with 3 additions and 1 deletions
  1. 3 1
      makepanda/makepanda.py

+ 3 - 1
makepanda/makepanda.py

@@ -245,7 +245,9 @@ if (DEBVERSION is None):
 MAJOR_VERSION = VERSION[:3]
 
 if (RUNTIME or RTDIST):
-    PkgDisable("PANDATOOL")
+    # Compiling Maya/Max is pointless in rtdist build
+    for ver in MAYAVERSIONS + MAXVERSIONS:
+        PkgDisable(ver)
 
     if (DISTRIBUTOR.strip() == ""):
         exit("You must provide a valid distributor name when making a runtime or rtdist build!")