From 4232e0b17cd89739888d231b34f7dabdf4f57391 Mon Sep 17 00:00:00 2001 From: gogg Date: Sun, 18 Apr 2010 07:48:27 +0000 Subject: [PATCH] Another check: cannot build rtdist without wx. --- makepanda/makepanda.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index d8bc4e01f2..cc7878dccf 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -246,6 +246,9 @@ if (RTDIST or RUNTIME) and (PkgSkip("TINYXML")): if (RTDIST) and (PkgSkip("JPEG")): exit("Cannot build rtdist without jpeg") +if (RTDIST) and (PkgSkip("WX")): + exit("Cannot build rtdist without wx") + if (RUNTIME): SetLinkAllStatic(True)