distro: bdb: Adjust to lack of /bin/sh.

* distro/packages/bdb.scm (bdb): Pass `CONFIG_SHELL' and `SHELL' to the
  `configure' script.
master
Ludovic Courtès 2013-01-06 18:47:24 +01:00
parent 2357f85032
commit b30e4f3f12
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,9 @@
(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