macostools.copy() now has an optional forcetype flag, which sets the filetype. This is used by various tools to set the type to APPL when copying interpreter template files (Atmp filetype).
diff --git a/Mac/scripts/ConfigurePython.py b/Mac/scripts/ConfigurePython.py
index ec4dab4..aabaaf6 100644
--- a/Mac/scripts/ConfigurePython.py
+++ b/Mac/scripts/ConfigurePython.py
@@ -102,7 +102,7 @@
for src, dst in list:
src = os.path.join(top, src)
dst = os.path.join(top, dst)
- macostools.copy(src, dst)
+ macostools.copy(src, dst, forcetype="APPL")
def main():
verbose = 0