summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-08-20 14:51:12 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-08-20 14:51:12 (GMT)
commitc590095a162f48d8033b62a3a05aba25a7d32df3 (patch)
tree1efd3c44d937cb0da6e8909446f1bf9976b97c69 /Mac
parent158d5b5a7a64f3a4bdafd2cafca071e5e3bc1a7b (diff)
downloadcpython-c590095a162f48d8033b62a3a05aba25a7d32df3.zip
cpython-c590095a162f48d8033b62a3a05aba25a7d32df3.tar.gz
cpython-c590095a162f48d8033b62a3a05aba25a7d32df3.tar.bz2
Binhextree doesn't binhex anymore, it just copies the projects around. This
does make the name a bit of a non-sequitur:-)
Diffstat (limited to 'Mac')
-rw-r--r--Mac/scripts/binhextree.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/Mac/scripts/binhextree.py b/Mac/scripts/binhextree.py
index 5c9143c..1d6996e 100644
--- a/Mac/scripts/binhextree.py
+++ b/Mac/scripts/binhextree.py
@@ -2,6 +2,8 @@
# binhextree - Recursively descend a directory and
# pack all resource files.
#
+# Actually it doesn't binhex anymore, it only copies projects.
+#
# Jack Jansen, CWI, August 1995.
#
@@ -187,8 +189,8 @@ def copycwexpfile(path, name):
macostools.copy(path, dstfile)
extensions = [
- ('.rsrc', binhexit),
- ('.gif', binhexit),
+## ('.rsrc', binhexit),
+## ('.gif', binhexit),
('.µ', copycwproject),
('.prj', copycwproject),
('.prj.exp', copycwexpfile),
@@ -211,8 +213,8 @@ def dodir(name):
TOP = name
os.path.walk(name, walker, None)
- for creator in project_files.keys():
- hexbincwprojects(creator)
+## for creator in project_files.keys():
+## hexbincwprojects(creator)
project_files = {}
def main():