From 6f484cb25a2779b685f1a5e584fb1296139b4f5e Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Sun, 19 Nov 2000 21:51:06 +0000 Subject: [PATCH] Close the project after building it, so that building umpteen projects doesn't keep all the projects open. --- 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 6551b223f91..a9e05629ca0 100644 --- a/Mac/Lib/mkcwproject/__init__.py +++ b/Mac/Lib/mkcwproject/__init__.py @@ -56,6 +56,7 @@ def buildproject(projectfile): prjfss = macfs.FSSpec(projectfile) cw.open(prjfss) cw.Make_Project() # XXX Should set target + cw.Close_Project() def cleanproject(projectfile): cw = cwtalker.MyCodeWarrior(start=1)