From 1e69b8b0b575f3415c5358f1846bbc82278f5613 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Wed, 19 Feb 2020 13:38:26 +0100 Subject: [PATCH] cmake: disable unwanted /lib64 behaviour - change defaults not to search or link against /lib{32,64} by setting FIND_LIBRARY_USE_LIB{32,64}_PATH to FALSE - be verbose --- cmake.be0 | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/cmake.be0 b/cmake.be0 index f5f28d389..134821992 100755 --- a/cmake.be0 +++ b/cmake.be0 @@ -1,10 +1,11 @@ #!/usr/bin/env beesh -# BEE_VERSION cmake-3.16.2-0 +# BEE_VERSION cmake-3.16.2-1 SRCURL[0]="https://cmake.org/files/v${PKGVERSION[2]}/cmake-${PKGVERSION}.tar.gz" PATCHURL+=( /src/mariux/patches/cmake-3.16.2-color-off-verbose-on.patch ) +PATCHURL+=( /src/mariux/patches/cmake-3.16.2-dont-find-lib64.patch ) # EXCLUDE+=() @@ -21,11 +22,12 @@ PATCHURL+=( /src/mariux/patches/cmake-3.16.2-color-off-verbose-on.patch ) #} mee_configure() { - ${S}/configure \ + ${S}/configure \ --prefix=/usr \ --docdir=share/doc/cmake-${PKGVERSION[2]} \ --mandir=share/man \ - --qt-gui + --qt-gui \ + --verbose } #mee_build() { @@ -45,13 +47,8 @@ mee_build_post() { # 594 - CMake.CheckSourceTree (Failed) make test || true - } #mee_install() { # bee_install #} - -#mee_install_post() { -# exit -#}