From 0dd02e3c3d7f0c0b38321c84aeafe74805de39ca Mon Sep 17 00:00:00 2001 From: probonopd Date: Wed, 12 Dec 2018 08:02:36 +0100 Subject: [PATCH] -DCMAKE_INSTALL_LIBDIR=/usr/lib https://code.wireshark.org/review/#/c/30953/3/CMakeLists.txt {ci skip} --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index dfca3ef..dcfbfcd 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,8 @@ __CMake__ wants `DESTDIR` instead: - make DESTDIR=appdir -j$(nproc) install ; find appdir/ ``` +Under some circumstances it may also be required to add `-DCMAKE_INSTALL_LIBDIR=/usr/lib` to the `cmake` call. + __autotools__ (the dinosaur that spends precious minutes "checking...") wants `DESTDIR` too but insists on an absolute link which we can feed it using readlink: ```