[MacOS] Fix error when copying externals again to build dir

This commit is contained in:
Roland Rossgotterer
2019-10-07 13:39:28 +02:00
committed by Mat Sutcliffe
parent b8661918d7
commit edb7a4795e

View File

@@ -129,7 +129,7 @@ win32 {
dest_path = $$DestRoot/bin dest_path = $$DestRoot/bin
} }
else:macx { else:macx {
copy_command = cp copy_command = rsync -avzl
source_path = $$EXTERNALS_BIN_DIR/* source_path = $$EXTERNALS_BIN_DIR/*
dest_path = $$DestRoot/bin dest_path = $$DestRoot/bin
} }
@@ -147,7 +147,7 @@ win32 {
dest_path = $$DestRoot/bin dest_path = $$DestRoot/bin
} }
else:macx { else:macx {
copy_command = cp -a copy_command = rsync -avzl
source_path = $$EXTERNALS_LIB_DIR/*.{dylib,framework} source_path = $$EXTERNALS_LIB_DIR/*.{dylib,framework}
dest_path = $$DestRoot/lib dest_path = $$DestRoot/lib
} }