From a21a8fb7ab5d87b0a433c4a767db59e8a5d548cd Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Tue, 14 Dec 2021 17:15:59 +0000 Subject: [PATCH] build: Remove unsupported flag NO_SOURCE_PERMISSIONS --- buildsupport/macros_and_definitions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildsupport/macros_and_definitions.cmake b/buildsupport/macros_and_definitions.cmake index 3e114cd6e..ce990418b 100644 --- a/buildsupport/macros_and_definitions.cmake +++ b/buildsupport/macros_and_definitions.cmake @@ -1086,7 +1086,7 @@ function(copy_headers_before_building_lib libname outputdir headers visibility) foreach(header ${headers}) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/${header} ${outputdir}/${header_name} - NO_SOURCE_PERMISSIONS COPYONLY + COPYONLY ) endforeach() endfunction(copy_headers_before_building_lib)