summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-01-06 18:47:24 +0100
committerLudovic Courtès <ludo@gnu.org>2013-01-06 18:47:24 +0100
commitb30e4f3f125d2d23647609f1ff5c1e784e72c196 (patch)
tree5d74f777930fcb4d4badbcd50a60bd2c88b00a1d
parent2357f85032de5457c28586794fa0fb09488dc6c1 (diff)
downloadpatches-b30e4f3f125d2d23647609f1ff5c1e784e72c196.tar
patches-b30e4f3f125d2d23647609f1ff5c1e784e72c196.tar.gz
distro: bdb: Adjust to lack of /bin/sh.
* distro/packages/bdb.scm (bdb): Pass `CONFIG_SHELL' and `SHELL' to the `configure' script.
-rw-r--r--distro/packages/bdb.scm4
1 files changed, 3 insertions, 1 deletions
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 @@
(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