mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: tdb: Use 'modify-phases' syntax.
* gnu/packages/databases.scm (tdb)[arguments]: Use 'modify-phases' syntax.
This commit is contained in:
parent
1abd090487
commit
6ccb78144c
1 changed files with 9 additions and 9 deletions
|
@ -549,15 +549,15 @@ (define-public tdb
|
||||||
"0i1l38h0vyck6zkcj4fn2l03spadlmyr1qa1xpdp9dy2ccbm3s1r"))))
|
"0i1l38h0vyck6zkcj4fn2l03spadlmyr1qa1xpdp9dy2ccbm3s1r"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (alist-replace
|
'(#:phases
|
||||||
'configure
|
(modify-phases %standard-phases
|
||||||
|
(replace 'configure
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
;; The 'configure' script is a wrapper for Waf and
|
;; The 'configure' script is a wrapper for Waf and
|
||||||
;; doesn't recognize things like '--enable-fast-install'.
|
;; doesn't recognize things like '--enable-fast-install'.
|
||||||
(zero? (system* "./configure"
|
(zero? (system* "./configure"
|
||||||
(string-append "--prefix=" out)))))
|
(string-append "--prefix=" out)))))))))
|
||||||
%standard-phases)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(;; TODO: Build the documentation.
|
`(;; TODO: Build the documentation.
|
||||||
;; ("docbook-xsl" ,docbook-xsl)
|
;; ("docbook-xsl" ,docbook-xsl)
|
||||||
|
|
Loading…
Reference in a new issue