* Use /bin/bash, not /bin/sh, since we really do need bash.

svn path=/nixpkgs/trunk/; revision=3018
This commit is contained in:
Eelco Dolstra 2005-05-10 09:22:14 +00:00
parent f0ee6546db
commit edbfa75d01
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
let {
shell = "/bin/sh";
shell = "/bin/bash";
body =

View File

@ -15,5 +15,5 @@ genericStdenv {
inherit stdenv;
};
shell = "/bin/sh";
shell = "/bin/bash";
}