[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: tdb: Use 'modify-phases' syntax.
From: |
Efraim Flashner |
Subject: |
05/08: gnu: tdb: Use 'modify-phases' syntax. |
Date: |
Sat, 8 Oct 2016 20:27:21 +0000 (UTC) |
efraim pushed a commit to branch master
in repository guix.
commit 6ccb78144c78daf6d55edee6a6721565a0c4b520
Author: Efraim Flashner <address@hidden>
Date: Sat Oct 8 22:14:36 2016 +0300
gnu: tdb: Use 'modify-phases' syntax.
* gnu/packages/databases.scm (tdb)[arguments]: Use 'modify-phases' syntax.
---
gnu/packages/databases.scm | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index c5fc9c7..b5c4ffc 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -549,15 +549,15 @@ is in the public domain.")
"0i1l38h0vyck6zkcj4fn2l03spadlmyr1qa1xpdp9dy2ccbm3s1r"))))
(build-system gnu-build-system)
(arguments
- '(#:phases (alist-replace
- 'configure
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- ;; The 'configure' script is a wrapper for Waf and
- ;; doesn't recognize things like '--enable-fast-install'.
- (zero? (system* "./configure"
- (string-append "--prefix=" out)))))
- %standard-phases)))
+ '(#:phases
+ (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ ;; The 'configure' script is a wrapper for Waf and
+ ;; doesn't recognize things like '--enable-fast-install'.
+ (zero? (system* "./configure"
+ (string-append "--prefix=" out)))))))))
(native-inputs
`(;; TODO: Build the documentation.
;; ("docbook-xsl" ,docbook-xsl)
- branch master updated (86d959b -> 4726dd2), Efraim Flashner, 2016/10/08
- 05/08: gnu: tdb: Use 'modify-phases' syntax.,
Efraim Flashner <=
- 01/08: gnu: samba: Update to 4.5.0., Efraim Flashner, 2016/10/08
- 07/08: gnu: offlineimap: Update to 7.0.8., Efraim Flashner, 2016/10/08
- 06/08: gnu: ldb: Update to 1.1.27., Efraim Flashner, 2016/10/08
- 02/08: gnu: talloc: Update to 2.1.8., Efraim Flashner, 2016/10/08
- 04/08: gnu: tdb: Update to 1.3.11., Efraim Flashner, 2016/10/08
- 08/08: gnu: ccache: Update to 3.3.2., Efraim Flashner, 2016/10/08
- 03/08: gnu: tevent: Update to 0.9.31., Efraim Flashner, 2016/10/08