From 5629927c63f4413fb05a41f8e72190a01866a6d0 Mon Sep 17 00:00:00 2001 From: reuk Date: Wed, 13 Jan 2021 19:21:27 +0000 Subject: [PATCH] CMake: Fix an issue where AUv3 execute permission could go missing during install --- extras/Build/CMake/copyDir.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Build/CMake/copyDir.cmake b/extras/Build/CMake/copyDir.cmake index b93aa1724f..73b87fba1a 100644 --- a/extras/Build/CMake/copyDir.cmake +++ b/extras/Build/CMake/copyDir.cmake @@ -21,4 +21,4 @@ # # ============================================================================== -file(INSTALL ${src} DESTINATION ${dest}) +file(INSTALL ${src} DESTINATION ${dest} USE_SOURCE_PERMISSIONS)