From b30e4f3f125d2d23647609f1ff5c1e784e72c196 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 6 Jan 2013 18:47:24 +0100 Subject: distro: bdb: Adjust to lack of /bin/sh. * distro/packages/bdb.scm (bdb): Pass `CONFIG_SHELL' and `SHELL' to the `configure' script. --- distro/packages/bdb.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'distro') diff --git a/distro/packages/bdb.scm b/distro/packages/bdb.scm index 6d6adc000c..93bf290231 100644 --- a/distro/packages/bdb.scm +++ b/distro/packages/bdb.scm @@ -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 -- cgit v1.2.3