From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1edFFB-0000nu-QF for guix-patches@gnu.org; Sun, 21 Jan 2018 08:01:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1edFF8-0003LX-NV for guix-patches@gnu.org; Sun, 21 Jan 2018 08:01:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:56942) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1edFF8-0003LT-Jv for guix-patches@gnu.org; Sun, 21 Jan 2018 08:01:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1edFF8-0002GU-9w for guix-patches@gnu.org; Sun, 21 Jan 2018 08:01:02 -0500 Subject: [bug#30191] [PATCH] gnu: gnunet: Use invoke. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49537) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1edFES-0000Nz-2V for guix-patches@gnu.org; Sun, 21 Jan 2018 08:00:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1edFEN-0002rA-S0 for guix-patches@gnu.org; Sun, 21 Jan 2018 08:00:19 -0500 Received: from aibo.runbox.com ([91.220.196.211]:42162) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1edFEN-0002oA-A3 for guix-patches@gnu.org; Sun, 21 Jan 2018 08:00:15 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1edFEG-00007E-QE for guix-patches@gnu.org; Sun, 21 Jan 2018 14:00:08 +0100 From: ng0+guixpatches@n0.is Date: Sun, 21 Jan 2018 12:57:43 +0000 Message-Id: <20180121125743.1326-1-ng0+guixpatches@n0.is> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 30191@debbugs.gnu.org Cc: ng0 From: ng0 * gnu/packages/gnunet.scm (gnurl)[arguments]: Substitute invoke for system*. (guile-gnunet)[arguments]: Likewise. --- gnu/packages/gnunet.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 2d238febc..759bc847e 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2015, 2017 Efraim Flashner ;;; Copyright © 2016 Ricardo Wurmus ;;; Copyright © 2016 Mark H Weaver -;;; Copyright © 2016, 2017 ng0 +;;; Copyright © 2016, 2017, 2018 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -226,7 +226,7 @@ authentication and support for SSL3 and TLS.") (("/bin/sh") (which "sh"))) ;; Make test output more verbose. - (zero? (system* "make" "-C" "tests" "test")) + (invoke "make" "-C" "tests" "test") #t))))) (synopsis "Microfork of cURL with support for the HTTP/HTTPS/GnuTLS subset of cURL") (description @@ -325,7 +325,7 @@ kinds of basic applications for the foundation of a GNU internet.") '(#:phases (modify-phases %standard-phases (add-after 'unpack 'bootstrap (lambda _ - (zero? (system* "autoreconf" "-vfi"))))))) + (invoke "autoreconf" "-vfi")))))) (native-inputs `(("pkg-config" ,pkg-config) ("autoconf" ,(autoconf-wrapper)) ("automake" ,automake))) -- 2.15.1