From bfd3869432483f0c55f14816abf0364d0a808996 Mon Sep 17 00:00:00 2001 From: Mikko Rapeli Date: Fri, 4 Oct 2024 14:43:30 +0100 Subject: [PATCH] libteec/CMakeLists.txt: remove CFG_TEE_CLIENT_LOAD_PATH comment It's not needed now that both use CMAKE_INSTALL_LIBDIR as path. If users want different paths, then they need to set CMAKE_INSTALL_LIBDIR to their liking when compiling. Acked-by: Jerome Forissier Signed-off-by: Mikko Rapeli --- libteec/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/libteec/CMakeLists.txt b/libteec/CMakeLists.txt index c8573697..89ea757d 100644 --- a/libteec/CMakeLists.txt +++ b/libteec/CMakeLists.txt @@ -62,8 +62,6 @@ target_link_libraries(teec ################################################################################ # Install targets ################################################################################ -# FIXME: This should in someway harmonize with CFG_TEE_CLIENT_LOAD_PATH -# FIXME: Should we change this to /usr/local/lib? install(TARGETS teec LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}")