fix binding install on python2 (#1231)
This commit is contained in:
parent
d13609d49d
commit
18aa2627f7
@ -174,7 +174,10 @@ def build_libraries():
|
||||
|
||||
if SYSTEM == 'darwin':
|
||||
for file in glob.glob(MAC_LIBRARY_FILE):
|
||||
try:
|
||||
shutil.copy(file, LIBS_DIR, follow_symlinks=False)
|
||||
except:
|
||||
shutil.copy(file, LIBS_DIR)
|
||||
else:
|
||||
shutil.copy(LIBRARY_FILE, LIBS_DIR)
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user