>From 474fd1807a0870a7156a22200b763e89997c10a6 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 18 Jul 2016 14:47:50 -0400 Subject: [PATCH 1/4] gnu: gnupg: Use modify-phases syntax. * gnu/packages/gnupg.scm (gnupg)[arguments]: Use modify-phases syntax. --- gnu/packages/gnupg.scm | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 444c60a..5b61881 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -233,14 +233,13 @@ compatible to GNU Pth.") ("readline" ,readline) ("sqlite" ,sqlite) ("zlib" ,zlib))) - (arguments - `(#:phases - (alist-cons-before - 'configure 'patch-config-files - (lambda _ - (substitute* "tests/openpgp/defs.inc" - (("/bin/pwd") (which "pwd")))) - %standard-phases))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'configure 'patch-config-files + (lambda _ + (substitute* "tests/openpgp/defs.inc" + (("/bin/pwd") (which "pwd")))))))) (home-page "http://gnupg.org/") (synopsis "GNU Privacy Guard") (description -- 2.9.1