From 79f62717969aeb58d3f71a240ce5e70c0691ba0c Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Thu, 28 Jun 2007 00:41:24 +0000 Subject: [PATCH] Correction to search-path order --- doc/makepanda/makepanda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/makepanda/makepanda.py b/doc/makepanda/makepanda.py index a7f08195d9..48e14d727d 100755 --- a/doc/makepanda/makepanda.py +++ b/doc/makepanda/makepanda.py @@ -1173,8 +1173,8 @@ def CompileIgate(ipath,opts,outd,obj,src,module,library,files): if (optlevel==4): cmd = cmd + ' -DNDEBUG -DFORCE_INLINING' cmd = cmd + ' -oc ' + woutc + ' -od ' + woutd cmd = cmd + ' -fnames -string -refcount -assert -python-native' - for x in xipath: cmd = cmd + ' -I' + x cmd = cmd + ' -Sbuilt/include/parser-inc' + for x in xipath: cmd = cmd + ' -I' + x cmd = cmd + ' -Sthirdparty/win-python/include' for ver in DXVERSIONS: if ((COMPILER=="MSVC") and PkgSelected(opts,"DX"+ver)): @@ -1203,8 +1203,8 @@ def CompileIgate(ipath,opts,outd,obj,src,module,library,files): if (optlevel==4): cmd = cmd + ' -DNDEBUG ' cmd = cmd + ' -oc ' + woutc + ' -od ' + woutd cmd = cmd + ' -fnames -string -refcount -assert -python-native' - for x in xipath: cmd = cmd + ' -I' + x cmd = cmd + ' -Sbuilt/include/parser-inc' + for x in xipath: cmd = cmd + ' -I' + x cmd = cmd + ' -S'+PYTHONSDK for pkg in PACKAGES: if (PkgSelected(opts,pkg)):