From ebf032e5c516fcbeb0cbdd31c387e3e920c0b97b Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Fri, 10 Jun 2005 19:00:35 +0000 Subject: [PATCH] Fixed a recently-introduced bug --- doc/makepanda/makepanda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/makepanda/makepanda.py b/doc/makepanda/makepanda.py index 6602923f2e..b051b9535c 100755 --- a/doc/makepanda/makepanda.py +++ b/doc/makepanda/makepanda.py @@ -695,7 +695,7 @@ for version,key1,key2,subdir in MAXVERSIONS: ## ######################################################################## -if (OMIT.count("PYTHON")==0): +if (OMIT.count("PYTHON")==0) and (sys.platform != "win32"): if (os.path.isdir("/usr/include/python2.5")): PYTHONSDK = "/usr/include/python2.5" elif (os.path.isdir("/usr/include/python2.4")): PYTHONSDK = "/usr/include/python2.4" elif (os.path.isdir("/usr/include/python2.3")): PYTHONSDK = "/usr/include/python2.3"