mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-29 11:27:01 +00:00
Library files aren't supposed to be executable
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
dedff7a57d
commit
280165c9b3
3
ChangeLog.d/cmake-install.txt
Normal file
3
ChangeLog.d/cmake-install.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
Bugfix
|
||||||
|
* Library files installed after a CMake build no longer have execute
|
||||||
|
permission.
|
|
@ -201,7 +201,7 @@ foreach(target IN LISTS target_libraries)
|
||||||
PRIVATE ${thirdparty_def})
|
PRIVATE ${thirdparty_def})
|
||||||
install(TARGETS ${target}
|
install(TARGETS ${target}
|
||||||
DESTINATION ${LIB_INSTALL_DIR}
|
DESTINATION ${LIB_INSTALL_DIR}
|
||||||
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
|
||||||
endforeach(target)
|
endforeach(target)
|
||||||
|
|
||||||
add_custom_target(lib DEPENDS mbedcrypto mbedx509 mbedtls)
|
add_custom_target(lib DEPENDS mbedcrypto mbedx509 mbedtls)
|
||||||
|
|
Loading…
Reference in a new issue