# HG changeset patch # User Markus Mützel # Date 1696526229 -7200 # Node ID d02fb20863e12c04ecdeacced8eabc609fc48a5f # Parent 3b64213a99e9befdf63b1744fc177501de8ce5e3 build-zstd: Install libraries in "lib" directory. * src/build-zstd.mk: Explicitly set CMAKE_INSTALL_LIBDIR to "lib" in configuration. The CMake toolchain files haven't been created yet when build tools are built. So, we can't rely on them. diff -r 3b64213a99e9 -r d02fb20863e1 src/build-zstd.mk --- a/src/build-zstd.mk Thu Oct 05 19:13:40 2023 +0200 +++ b/src/build-zstd.mk Thu Oct 05 19:17:09 2023 +0200 @@ -24,6 +24,7 @@ $($(PKG)_CMAKE_FLAGS) \ $(CMAKE_CCACHE_FLAGS) \ -DCMAKE_INSTALL_PREFIX='$(3)$(BUILD_TOOLS_PREFIX)' \ + -DCMAKE_INSTALL_LIBDIR='lib' \ -DBUILD_TESTING=Off cmake --build '$(1)/.build' -j '$(JOBS)'