From b70699bcc57ba26762269e4a1aab8581fccb46b4 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 3 Dec 1999 23:38:05 +0000 Subject: 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. --- Mac/Lib/buildtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Lib/buildtools.py b/Mac/Lib/buildtools.py index ba1dd64..e8c6eb0 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) -- cgit v0.12