Skip to content

Commit

Permalink
Merge pull request #38 from sezero/master
Browse files Browse the repository at this point in the history
further fixes for #35 and #37
  • Loading branch information
cahirwpz committed Apr 17, 2016
2 parents 0af7c06 + d09f38e commit 907067c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def fetch(name, url):
elif url.startswith('file'):
if not path.exists(name):
_, src = url.split('://')
copytree(src, name)
copy(src, name)
else:
panic('URL "%s" not recognized!', url)

Expand Down
2 changes: 1 addition & 1 deletion toolchain-m68k
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def process_sdk(sdk, dirname, files):
if kind == 'fd2sfd':
fd, protos = f[1:]
sfd = path.splitext(path.basename(fd))[0]
if not fd.endswith('_lib'):
if not fd.endswith('_lib.fd'):
sfd = sfd + '_lib.sfd'
else:
sfd = sfd + '.sfd'
Expand Down

0 comments on commit 907067c

Please sign in to comment.