~ruther/guix-local

b30e4f3f125d2d23647609f1ff5c1e784e72c196 — Ludovic Courtès 13 years ago 2357f85
distro: bdb: Adjust to lack of /bin/sh.

* distro/packages/bdb.scm (bdb): Pass `CONFIG_SHELL' and `SHELL' to the
  `configure' script.
1 files changed, 3 insertions(+), 1 deletions(-)

M distro/packages/bdb.scm
M distro/packages/bdb.scm => distro/packages/bdb.scm +3 -1
@@ 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