Merge pull request #231 from JoeGlancy/patch-2

Updated setup.py (workaround for issue 229)
This commit is contained in:
Mattias Andrée [mˈa.tːiː.ˌas ˈanː.drˌeː] 2015-12-27 18:15:43 +00:00
commit 68a96f13b8

View file

@ -922,7 +922,11 @@ class Setup():
if target.startswith('./') or target.startswith('../'): if target.startswith('./') or target.startswith('../'):
os.symlink(target, dest) os.symlink(target, dest)
elif '/' not in target: elif '/' not in target:
try:
os.symlink('./' + target, dest) os.symlink('./' + target, dest)
except OSError as e:
if e.errno != 17:
raise
else: else:
targets = target.split('/') targets = target.split('/')
dests = dest.split('/') dests = dest.split('/')