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/fullbuild.py b/Mac/scripts/fullbuild.py
index 4d18c08..3337512 100644
--- a/Mac/scripts/fullbuild.py
+++ b/Mac/scripts/fullbuild.py
@@ -167,7 +167,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 handle_dialog(filename):
 	"""Handle selection dialog, return list of selected items"""