diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-11-09 18:36:00 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-11-09 18:36:00 (GMT) |
commit | 297d7dd2c9da10c18570bdb888ca6084adfc114c (patch) | |
tree | bcac42a39534b57cda3455b1a2fefbcfd33a592f /Mac/scripts/binhextree.py | |
parent | 612db8f679d5611f7bd0ac5c7f262691a8548a5d (diff) | |
download | cpython-297d7dd2c9da10c18570bdb888ca6084adfc114c.zip cpython-297d7dd2c9da10c18570bdb888ca6084adfc114c.tar.gz cpython-297d7dd2c9da10c18570bdb888ca6084adfc114c.tar.bz2 |
Keep the folder structure in Mac:mwerks:projects similar to the
toplevel build folder structure.
Diffstat (limited to 'Mac/scripts/binhextree.py')
-rw-r--r-- | Mac/scripts/binhextree.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/binhextree.py b/Mac/scripts/binhextree.py index b39cac9..b354e4a 100644 --- a/Mac/scripts/binhextree.py +++ b/Mac/scripts/binhextree.py @@ -117,7 +117,7 @@ def copycwproject(path, name): print dstdir print 'No CW-project dir, skip', name return - dstfile = os.path.join(dstdir, name) + dstfile = os.path.join(dstdir, os.path.join(srcdir, name)) else: if path[-2:] != '.µ': return @@ -155,7 +155,7 @@ def copycwexpfile(path, name): print dstdir print 'No CW-project dir, skip', name return - dstfile = os.path.join(dstdir, name) + dstfile = os.path.join(dstdir, os.path.join(srcdir, name)) else: if path[-6:] != '.µ.exp': return |