[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: libtirpc: Use 'modify-phases'.
From: |
John Darrington |
Subject: |
04/05: gnu: libtirpc: Use 'modify-phases'. |
Date: |
Tue, 30 Aug 2016 05:03:30 +0000 (UTC) |
jmd pushed a commit to branch master
in repository guix.
commit 1da82dbb9901704316362943629a20b71ce7c912
Author: John Darrington <address@hidden>
Date: Sun Aug 28 18:58:16 2016 +0200
gnu: libtirpc: Use 'modify-phases'.
* gnu/packages/onc-rpc.scm (libtirpc)[arguments]: Use 'modify-phases'.
---
gnu/packages/onc-rpc.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/onc-rpc.scm b/gnu/packages/onc-rpc.scm
index d5858e8..a819d9e 100644
--- a/gnu/packages/onc-rpc.scm
+++ b/gnu/packages/onc-rpc.scm
@@ -37,13 +37,13 @@
"18a337wa4amf0k21wnimp3yzs5l3cxqndz4x3x8bm993zhfy5hs5"))))
(build-system gnu-build-system)
(arguments
- '(#:phases (alist-cons-after
- 'unpack 'remote-dangling-symlink
- (lambda _
- ;; Remote the dangling symlinks since it breaks the
- ;; 'patch-source-shebangs' file tree traversal.
- (delete-file "INSTALL"))
- %standard-phases)))
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'remote-dangling-symlink
+ (lambda _
+ ;; Remove the dangling symlinks since it breaks the
+ ;; 'patch-source-shebangs' file tree traversal.
+ (delete-file "INSTALL"))))))
(inputs `(("mit-krb5" ,mit-krb5)))
(home-page "http://sourceforge.net/projects/libtirpc/")
(synopsis "Transport-independent Sun/ONC RPC implementation")