From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH 3/4] gnu: xapian: Use 'modify-phases'. Date: Mon, 17 Oct 2016 17:55:05 +0100 Message-ID: <20161017165506.17750-4-mbakke@fastmail.com> References: <20161017165506.17750-1-mbakke@fastmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41102) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwBC8-0006ht-MV for guix-devel@gnu.org; Mon, 17 Oct 2016 12:55:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwBC7-0003nO-R0 for guix-devel@gnu.org; Mon, 17 Oct 2016 12:55:24 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:42126) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bwBC7-0003mv-Nd for guix-devel@gnu.org; Mon, 17 Oct 2016 12:55:23 -0400 In-Reply-To: <20161017165506.17750-1-mbakke@fastmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: Marius Bakke * gnu/packages/search.scm (xapian)[arguments]: Use 'modify-phases'. --- gnu/packages/search.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index 9eb4039..a43abde 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -46,12 +46,12 @@ (inputs `(("zlib" ,zlib) ("util-linux" ,util-linux))) (arguments - `(#:phases (alist-cons-after - 'unpack 'patch-remotetcp-harness - (lambda _ - (substitute* "tests/harness/backendmanager_remotetcp.cc" - (("/bin/sh") (which "bash")))) - %standard-phases))) + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-remotetcp-harness + (lambda _ + (substitute* "tests/harness/backendmanager_remotetcp.cc" + (("/bin/sh") (which "bash")))))))) (synopsis "Search Engine Library") (description "Xapian is a highly adaptable toolkit which allows developers to easily -- 2.10.1