Skip to content

Commit 907067c

Browse files
committed
Merge pull request #38 from sezero/master
further fixes for #35 and #37
2 parents 0af7c06 + d09f38e commit 907067c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def fetch(name, url):
384384
elif url.startswith('file'):
385385
if not path.exists(name):
386386
_, src = url.split('://')
387-
copytree(src, name)
387+
copy(src, name)
388388
else:
389389
panic('URL "%s" not recognized!', url)
390390

toolchain-m68k

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def process_sdk(sdk, dirname, files):
472472
if kind == 'fd2sfd':
473473
fd, protos = f[1:]
474474
sfd = path.splitext(path.basename(fd))[0]
475-
if not fd.endswith('_lib'):
475+
if not fd.endswith('_lib.fd'):
476476
sfd = sfd + '_lib.sfd'
477477
else:
478478
sfd = sfd + '.sfd'

0 commit comments

Comments
 (0)