Skip to content

Commit

Permalink
fix cmake install prefix (#16)
Browse files Browse the repository at this point in the history
* fix cmake install prefix
* added CMake cache fields
* update version ID to v1.3.9

---------

Co-authored-by: Thomas Irgang (thir820) <[email protected]>
  • Loading branch information
matthiasb85 and thir820 authored Oct 22, 2024
1 parent 732dbe9 commit 9727219
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configuration/build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Base-Name: sdk
Repository: linux.elektrobit.com/ebcl
Base-Container: ubuntu:22.04
Version: v1.3.8
Version: v1.3.9
Layers:
- ../layers/base
- ../layers/pbuilder
Expand Down
2 changes: 1 addition & 1 deletion layers/appdev/conf/cmake/toolchain-aarch64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ set(ENV{PKG_CONFIG_DIR} "")
set(ENV{PKG_CONFIG_LIBDIR} "${CMAKE_FIND_ROOT_PATH}/usr/lib/aarch64-linux-gnu/pkgconfig/:${CMAKE_FIND_ROOT_PATH}/usr/share/pkgconfig")
set(ENV{PKG_CONFIG_SYSROOT_DIR} ${CMAKE_FIND_ROOT_PATH})

set(CMAKE_INSTALL_PREFIX "/usr")
set(CMAKE_INSTALL_PREFIX "/" CACHE STRING "Install prefix" FORCE)
2 changes: 1 addition & 1 deletion layers/appdev/conf/cmake/toolchain-x86_64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ set(ENV{PKG_CONFIG_DIR} "")
set(ENV{PKG_CONFIG_LIBDIR} "${CMAKE_FIND_ROOT_PATH}/usr/lib/x86_64-linux-gnu/pkgconfig/:${CMAKE_FIND_ROOT_PATH}/usr/share/pkgconfig")
set(ENV{PKG_CONFIG_SYSROOT_DIR} ${CMAKE_FIND_ROOT_PATH})

set(CMAKE_INSTALL_PREFIX "/usr")
set(CMAKE_INSTALL_PREFIX "/" CACHE STRING "Install prefix" FORCE)

0 comments on commit 9727219

Please sign in to comment.