From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60666) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ent2a-0007Ua-D1 for guix-patches@gnu.org; Mon, 19 Feb 2018 16:32:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ent2X-0001AT-N4 for guix-patches@gnu.org; Mon, 19 Feb 2018 16:32:04 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:43854) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ent2X-0001AP-Jt for guix-patches@gnu.org; Mon, 19 Feb 2018 16:32:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ent2X-0004wK-Dk for guix-patches@gnu.org; Mon, 19 Feb 2018 16:32:01 -0500 Subject: bug#30509: neomutt: Update to 20171215 Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87tvuezboa.fsf@abyayala.i-did-not-set--mail-host-address--so-tickle-me> <20180219081353.ywx2ehxvedx3j6nb@abyayala> Date: Mon, 19 Feb 2018 22:30:59 +0100 In-Reply-To: <20180219081353.ywx2ehxvedx3j6nb@abyayala> (ng0@n0.is's message of "Mon, 19 Feb 2018 08:13:53 +0000") Message-ID: <874lmcekfg.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: ng0 Cc: 30509-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable ng0 skribis: > From d594a0b91ed7a3733e563eb8d92562df2919fb62 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Sun, 18 Feb 2018 12:57:00 +0000 > Subject: [PATCH] gnu: neomutt: Update to 20171215. > > * gnu/packages/mail.scm (neomutt): Update to 20171215. > [inputs]: Move "docbook-xsl" to [native-inputs]. > [native-inputs]: Remove "autoconf". Add "tcl", "docbook-xml", "w3m". > [argumnets]: Switch to autosetup based build. Add new phases "fix-sasl-te= st", > "fix-docbook". Remove phase "autoconf". Applied with the tiny change below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a01e157c4..d7e76ac3e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -394,9 +394,9 @@ operating systems.") (bash (which "bash"))) (setenv "SHELL" bash) (setenv "CONFIG_SHELL" bash) - (zero? (apply system* bash + (apply invoke bash (string-append (getcwd) "/configure") - flags)))))))) + flags))))))) (home-page "https://www.neomutt.org/") (synopsis "Command-line mail reader based on Mutt") (description --=-=-=--