summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJust van Rossum <just@lettererror.com>1999-01-30 21:20:10 (GMT)
committerJust van Rossum <just@lettererror.com>1999-01-30 21:20:10 (GMT)
commit1cea8047d8c758413a776dc6fa8c781b0ae218a7 (patch)
treea181df7a7d414bffa40173bfb3a42f0b476e93c6
parent2607a44690e701c66984b7b91fbcd225a3d271ff (diff)
downloadcpython-1cea8047d8c758413a776dc6fa8c781b0ae218a7.zip
cpython-1cea8047d8c758413a776dc6fa8c781b0ae218a7.tar.gz
cpython-1cea8047d8c758413a776dc6fa8c781b0ae218a7.tar.bz2
skip 'vers' resource when copying resources from templeate -- jvr
-rw-r--r--Mac/Lib/buildtools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/buildtools.py b/Mac/Lib/buildtools.py
index 62fc38e..d2ae0fa 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#']