>From 728e0bf170547b9cfa721d5770e75a7699644f05 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 18 Jul 2016 14:48:55 -0400 Subject: [PATCH 3/4] gnu: gnupg-1: Use modify-phases syntax. * gnu/packages/gnupg.scm (gnupg-1)[arguments]: Use modify-phases syntax. --- gnu/packages/gnupg.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 1958462..8ef98a8 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -302,12 +302,12 @@ libskba (working with X.509 certificates and CMS data).") ("readline" ,readline) ("libgpg-error" ,libgpg-error))) (arguments - `(#:phases (alist-cons-after - 'unpack 'patch-check-sh - (lambda _ - (substitute* "checks/Makefile.in" - (("/bin/sh") (which "bash")))) - %standard-phases))))) + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-check-sh + (lambda _ + (substitute* "checks/Makefile.in" + (("/bin/sh") (which "bash")))))))))) (define-public gpgme (package -- 2.9.1