clarify comment

This commit is contained in:
2024-09-08 15:53:07 -05:00
parent d685598062
commit e87f7de716

View File

@@ -186,7 +186,8 @@ if platform == "darwin":
if path.exists(dest_path):
break
print(f'copying from {src_path}')
# Copying .frameworks needs to preserve symlinks by using cp -a
# Copying .frameworks needs to preserve symlinks by using cp -a.
# SCons provides Copy(symlinks=True) but that doesn't seem to work.
try:
print(subprocess.check_output(['cp', '-av', src_path, dest_path], text=True))
except: