From: Jack Jansen Date: Fri, 3 Dec 1999 23:38:05 +0000 (+0000) Subject: Set the finder "is shared" bit, by request of Joe Strout. It seems this allows multip... X-Git-Tag: v1.6a1~682 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b70699bcc57ba26762269e4a1aab8581fccb46b4;p=thirdparty%2FPython%2Fcpython.git Set the finder "is shared" bit, by request of Joe Strout. It seems this allows multiple simultaneous copies to be run from a server, and Applets shouldn't write their datafork so it appears safe. --- diff --git a/Mac/Lib/buildtools.py b/Mac/Lib/buildtools.py index ba1dd647237a..e8c6eb0108fa 100644 --- a/Mac/Lib/buildtools.py +++ b/Mac/Lib/buildtools.py @@ -228,7 +228,7 @@ def process_common(template, progress, code, rsrcname, destname, is_update, copy dest_finfo = dest_fss.GetFInfo() dest_finfo.Creator = ownertype dest_finfo.Type = 'APPL' - dest_finfo.Flags = dest_finfo.Flags | MACFS.kHasBundle + dest_finfo.Flags = dest_finfo.Flags | MACFS.kHasBundle | MACFS.kIsShared dest_finfo.Flags = dest_finfo.Flags & ~MACFS.kHasBeenInited dest_fss.SetFInfo(dest_finfo)