From e04ad3d78fc990d97b0e093bc499ce5377c3eb59 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 3 Aug 2009 07:08:26 +0000 Subject: [PATCH] Typo --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 9a399d8c1d..2fb9976bca 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -1201,7 +1201,7 @@ def SetOrigExt(x, v): def CalcLocation(fn, ipath): if (fn.count("/")): return fn dllext = "" - if (GetOptimizeOption(opts,OPTIMIZE) <= 2): dllext = "_d" + if (int(OPTIMIZE) <= 2): dllext = "_d" if (fn == "PandaModules.py"): return "pandac/" + fn if (fn.endswith(".cxx")): return CxxFindSource(fn, ipath)