From 99c71cef31b4bfa65735ad2de9c0c4852e114fa0 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 7 Jul 2011 08:58:18 +0000 Subject: [PATCH] don't disable pandatool entirely in rtdist build --- makepanda/makepanda.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index c987c40810..54018ab712 100755 --- a/makepanda/makepanda.py +++ b/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!")