From b4258de3183b9aabb88f922a69303d0f25f6fea6 Mon Sep 17 00:00:00 2001 From: Ranjith Ramakrishnan Date: Thu, 15 Dec 2022 23:14:51 -0800 Subject: [PATCH] Removed the initialization of cmake_install_libdir The initialization should be controlled from build scripts. Removing the same from source code Build scripts is initializing the variable to "lib" Change-Id: I55b6cf4752e692735c2a0be13b79f5988137e3a6 --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f89a1f2f6..5564ad06a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,8 +31,6 @@ set ( ROCPROFILER_TARGET "${ROCPROFILER_NAME}64" ) set ( ROCPROFILER_LIBRARY "lib${ROCPROFILER_TARGET}" ) project ( ${ROCPROFILER_NAME} ) -# Set default libdir to be "lib" for ROCm -set(CMAKE_INSTALL_LIBDIR "lib" CACHE STRING "Library install directory") include(GNUInstallDirs) ## Adding default path cmake modules list ( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules" )