From e86f9470b234a36c53c00907dbddd33e48f80575 Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Thu, 17 May 2007 07:17:16 +0000 Subject: [PATCH] Refactoring introduced a few bugs, now fixed. --- 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 ba677e6431..6c12c86f62 100755 --- a/doc/makepanda/makepanda.py +++ b/doc/makepanda/makepanda.py @@ -1128,7 +1128,7 @@ def EnqueueBison(ipath=0,opts=0,pre=0,obj=0,dsth=0,src=0): def CompileFlex(pre,src,obj,ipath,opts,dashi): wsrc=FindLocation(src, ipath) wobj=FindLocation(obj, ipath) - wdst=wobj[:-4]+".cxx" + wdst="built/tmp/"+obj[:-4]+".cxx" ipath = ["built/tmp"] + ipath + ["built/include"] if (COMPILER == "MSVC"): if (dashi): oscmd("thirdparty/win-util/flex -i -P" + pre + " -o"+wdst+" "+wsrc)