From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55236) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i5WlR-0006OS-40 for guix-patches@gnu.org; Wed, 04 Sep 2019 11:00:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i5WlP-0000HQ-Tl for guix-patches@gnu.org; Wed, 04 Sep 2019 11:00:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53562) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i5WlP-0000HF-PA for guix-patches@gnu.org; Wed, 04 Sep 2019 11:00:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i5WlP-0002Re-Hh for guix-patches@gnu.org; Wed, 04 Sep 2019 11:00:03 -0400 Subject: [bug#37303] [PATCH 1/3] gnu: monero: Fix detection of readline library. References: <87ef0wrtzg.fsf@yamatai> In-Reply-To: <87ef0wrtzg.fsf@yamatai> Resent-Message-ID: From: Guillaume Le Vaillant Date: Wed, 4 Sep 2019 16:58:55 +0200 Message-Id: <20190904145857.30682-1-glv@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37303@debbugs.gnu.org Cc: Guillaume Le Vaillant * gnu/packages/finance.scm (monero)[arguments]: Define 'Readline_ROOT_DIR' in 'configure-flags'. --- gnu/packages/finance.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 377cb3a405..5824a14c33 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -490,9 +490,12 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch ("zeromq" ,zeromq))) (arguments `(#:out-of-source? #t - #:configure-flags '("-DARCH=default" - "-DBUILD_TESTS=ON" - "-DBUILD_GUI_DEPS=ON") + #:configure-flags + (list "-DARCH=default" + "-DBUILD_TESTS=ON" + "-DBUILD_GUI_DEPS=ON" + (string-append "-DReadline_ROOT_DIR=" + (assoc-ref %build-inputs "readline"))) #:phases (modify-phases %standard-phases ;; tests/core_tests need a valid HOME -- 2.23.0