Skip to content
Snippets Groups Projects
Commit a2311666 authored by Vladimir Davydov's avatar Vladimir Davydov Committed by Vladimir Davydov
Browse files

cmake: fix bundled zzip install dir

zzip is installed to lib64/ on some systems by default so we need to
explicitly set the install dir to lib/.

Fixes commit 140fd681 ("cmake: allow to use bundled zzip").

NO_DOC=build
NO_TEST=build
NO_CHANGELOG=build
parent edadffd7
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ set(ZZIP_CMAKE_FLAGS
"-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}"
"-DCMAKE_C_FLAGS=${ZZIP_CFLAGS}"
"-DCMAKE_INSTALL_PREFIX=${ZZIP_INSTALL_DIR}"
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DCMAKE_BUILD_TYPE=Release"
"-DBUILD_STATIC_LIBS=TRUE"
"-DBUILD_SHARED_LIBS=FALSE"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment