* Fix "infinite recursion" errors on FreeBSD and Darwin.

svn path=/nixpkgs/branches/usability/; revision=4997
This commit is contained in:
Eelco Dolstra 2006-03-08 15:34:05 +00:00
parent 2c98c02901
commit 03aef934d1
2 changed files with 10 additions and 0 deletions

View file

@ -16,4 +16,9 @@ genericStdenv {
};
shell = "/bin/sh";
extraAttrs = {
# Curl should be in /usr/bin or so.
curl = null;
};
}

View file

@ -16,4 +16,9 @@ genericStdenv {
};
shell = "/bin/bash";
extraAttrs = {
# Curl should be in /usr/bin or so.
curl = null;
};
}