diff options
author | Wootak Jung <wootak.jung@samsung.com> | 2021-06-07 09:06:40 +0900 |
---|---|---|
committer | Wootak Jung <wootak.jung@samsung.com> | 2021-06-07 09:06:56 +0900 |
commit | 968cb4e7a4f47935d3063097ddbef2bf6487cef9 (patch) | |
tree | 944c2ad73ab628f7ad5ff2a620d0e3921e6eba72 | |
parent | 42f2f33b1d3e53b95c2ea05711b0dcfd9753d744 (diff) | |
download | bluetooth-usb-968cb4e7a4f47935d3063097ddbef2bf6487cef9.tar.gz bluetooth-usb-968cb4e7a4f47935d3063097ddbef2bf6487cef9.tar.bz2 bluetooth-usb-968cb4e7a4f47935d3063097ddbef2bf6487cef9.zip |
Fix 64bit arch build errortizen_6.5.m2_releasesubmit/tizen_6.5/20211028.163201submit/tizen/20210607.002524submit/tizen/20210606.232858accepted/tizen/unified/20210607.124406accepted/tizen/6.5/unified/20211028.115320tizen_6.5accepted/tizen_6.5_unified
Change-Id: I754a49d646433beade395e1f210db26b26f45e0d
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ca1fc73..964fe52 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,4 +22,4 @@ SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}") ADD_LIBRARY(${PROJECT_NAME} SHARED ${SRCS}) TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${hal-backend-bluetooth_pkgs_LDFLAGS}) -INSTALL(TARGETS ${PROJECT_NAME} DESTINATION /hal/lib COMPONENT RuntimeLibraries) +INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${HAL_LIB_DIR} COMPONENT RuntimeLibraries) |