Merge branch 'master' of github.com:unicorn-engine/unicorn

This commit is contained in:
Nguyen Anh Quynh
2020-04-24 18:07:04 +08:00

View File

@ -174,7 +174,10 @@ def build_libraries():
if SYSTEM == 'darwin':
for file in glob.glob(MAC_LIBRARY_FILE):
shutil.copy(file, LIBS_DIR, follow_symlinks=False)
try:
shutil.copy(file, LIBS_DIR, follow_symlinks=False)
except:
shutil.copy(file, LIBS_DIR)
else:
shutil.copy(LIBRARY_FILE, LIBS_DIR)
try: