mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
distro: bdb: Adjust to lack of /bin/sh.
* distro/packages/bdb.scm (bdb): Pass `CONFIG_SHELL' and `SHELL' to the `configure' script.
This commit is contained in:
parent
2357f85032
commit
b30e4f3f12
1 changed files with 3 additions and 1 deletions
|
@ -44,7 +44,9 @@ (define-public bdb
|
|||
(let ((out (assoc-ref outputs "out")))
|
||||
(zero?
|
||||
(system* "./dist/configure"
|
||||
(string-append "--prefix=" out)))))
|
||||
(string-append "--prefix=" out)
|
||||
(string-append "CONFIG_SHELL=" (which "bash"))
|
||||
(string-append "SHELL=" (which "bash"))))))
|
||||
%standard-phases))))
|
||||
(synopsis "db, the Berkeley database")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue