gnu: bdb: Fix indentation.
* gnu/packages/databases.scm (bdb): Fix indentation.
This commit is contained in:
parent
d495634bc5
commit
5bef7749d5
|
@ -68,26 +68,26 @@
|
||||||
"doc")) ; 94 MiB of HTML docs
|
"doc")) ; 94 MiB of HTML docs
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no check target available
|
'(#:tests? #f ; no check target available
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(alist-replace
|
||||||
'configure
|
'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"))
|
||||||
(doc (assoc-ref outputs "doc")))
|
(doc (assoc-ref outputs "doc")))
|
||||||
;; '--docdir' is not honored, so we need to patch.
|
;; '--docdir' is not honored, so we need to patch.
|
||||||
(substitute* "dist/Makefile.in"
|
(substitute* "dist/Makefile.in"
|
||||||
(("docdir[[:blank:]]*=.*")
|
(("docdir[[:blank:]]*=.*")
|
||||||
(string-append "docdir = " doc "/share/doc/bdb")))
|
(string-append "docdir = " doc "/share/doc/bdb")))
|
||||||
|
|
||||||
(zero?
|
(zero?
|
||||||
(system* "./dist/configure"
|
(system* "./dist/configure"
|
||||||
(string-append "--prefix=" out)
|
(string-append "--prefix=" out)
|
||||||
(string-append "CONFIG_SHELL=" (which "bash"))
|
(string-append "CONFIG_SHELL=" (which "bash"))
|
||||||
(string-append "SHELL=" (which "bash"))
|
(string-append "SHELL=" (which "bash"))
|
||||||
|
|
||||||
;; The compatibility mode is needed by some packages,
|
;; The compatibility mode is needed by some packages,
|
||||||
;; notably iproute2.
|
;; notably iproute2.
|
||||||
"--enable-compat185"))))
|
"--enable-compat185"))))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(synopsis "Berkeley database")
|
(synopsis "Berkeley database")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue