From: Just van Rossum Date: Sat, 30 Jan 1999 21:20:10 +0000 (+0000) Subject: skip 'vers' resource when copying resources from templeate -- jvr X-Git-Tag: v1.5.2b2~185 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cea8047d8c758413a776dc6fa8c781b0ae218a7;p=thirdparty%2FPython%2Fcpython.git skip 'vers' resource when copying resources from templeate -- jvr --- diff --git a/Mac/Lib/buildtools.py b/Mac/Lib/buildtools.py index 62fc38e19ddc..d2ae0fada4a7 100644 --- a/Mac/Lib/buildtools.py +++ b/Mac/Lib/buildtools.py @@ -157,7 +157,7 @@ def process_common(template, progress, code, rsrcname, destname, is_update, copy Res.CloseResFile(input) # Check which resource-types we should not copy from the template - skiptypes = [] + skiptypes = ['vers'] if 'SIZE' in typesfound: skiptypes.append('SIZE') if 'BNDL' in typesfound: skiptypes = skiptypes + ['BNDL', 'FREF', 'icl4', 'icl8', 'ics4', 'ics8', 'ICN#', 'ics#']