explicitly disable readline support for bash on darwin, hacky for now, to avoid massive rebuild

svn path=/nixpkgs/branches/stdenv-updates/; revision=19678
This commit is contained in:
Rob Vermaas 2010-01-26 16:04:53 +00:00
parent fae05e6328
commit e8601a4227

View File

@ -2,7 +2,7 @@
assert interactive -> readline != null;
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
name = "bash-4.1";
src = fetchurl {
@ -71,4 +71,5 @@ stdenv.mkDerivation rec {
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}
} // (if stdenv.isDarwin then { configureFlags = if interactive then "--with-installed-readline" else "--disable-readline"; } else {}) )