From edb7a4795ea19a12998e8425b3349eccbfa83efd Mon Sep 17 00:00:00 2001 From: Roland Rossgotterer Date: Mon, 7 Oct 2019 13:39:28 +0200 Subject: [PATCH] [MacOS] Fix error when copying externals again to build dir --- src/blackmisc/blackmisc.pro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blackmisc/blackmisc.pro b/src/blackmisc/blackmisc.pro index 81bdd8d0f..c6f6884fc 100644 --- a/src/blackmisc/blackmisc.pro +++ b/src/blackmisc/blackmisc.pro @@ -129,7 +129,7 @@ win32 { dest_path = $$DestRoot/bin } else:macx { - copy_command = cp + copy_command = rsync -avzl source_path = $$EXTERNALS_BIN_DIR/* dest_path = $$DestRoot/bin } @@ -147,7 +147,7 @@ win32 { dest_path = $$DestRoot/bin } else:macx { - copy_command = cp -a + copy_command = rsync -avzl source_path = $$EXTERNALS_LIB_DIR/*.{dylib,framework} dest_path = $$DestRoot/lib }