summaryrefslogtreecommitdiffstats
path: root/Mac/scripts/fullbuild.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-03-06 22:46:25 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-03-06 22:46:25 (GMT)
commitc1463c98709bb62c6135f6e22afccdcc3fc765a7 (patch)
treed966b5128b9d669f07c88480a7d1f55e2c4e99f2 /Mac/scripts/fullbuild.py
parentbb74f95821406c3fbd970561c719fa70c02521b5 (diff)
downloadcpython-c1463c98709bb62c6135f6e22afccdcc3fc765a7.zip
cpython-c1463c98709bb62c6135f6e22afccdcc3fc765a7.tar.gz
cpython-c1463c98709bb62c6135f6e22afccdcc3fc765a7.tar.bz2
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).
Diffstat (limited to 'Mac/scripts/fullbuild.py')
-rw-r--r--Mac/scripts/fullbuild.py2
1 files changed, 1 insertions, 1 deletions
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 @@ def buildcopy(top, dummy, list):
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"""