From bc5e1453417e83411b255523eac9be83764ac47f Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 26 Jun 2002 20:35:18 +0000 Subject: [PATCH] Close the project after generating it, so we don't keep a gazillion project files open when we're rebuilding them all. --- Mac/Lib/mkcwproject/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Mac/Lib/mkcwproject/__init__.py b/Mac/Lib/mkcwproject/__init__.py index 69a1f32c9f1..ea127eea596 100644 --- a/Mac/Lib/mkcwproject/__init__.py +++ b/Mac/Lib/mkcwproject/__init__.py @@ -61,6 +61,7 @@ def makeproject(xmlfile, projectfile): xmlfss = macfs.FSSpec(xmlfile) prjfss = macfs.FSSpec(projectfile) cw.my_mkproject(prjfss, xmlfss) + cw.Close_Project() def buildproject(projectfile): cw = cwtalker.MyCodeWarrior(start=1)