Fixed a typo in kernel selection code

svn path=/nixpkgs/branches/stdenv-updates/; revision=9735
This commit is contained in:
Yury G. Kudryashov 2007-11-17 14:06:13 +00:00
parent 606b413f1f
commit beceee6b91

View file

@ -2956,7 +2956,7 @@ rec {
kernel = (if (getConfig ["kernel" "version"] "2.6.21") == "2.6.22" then
kernel_2_6_22 else if (getConfig ["kernel" "version"] "2.6.21") == "2.6.23" then
kernel_2_6_23 else kernel);
kernel_2_6_23 else kernel_2_6_21);
kernel_2_6_20 = import ../os-specific/linux/kernel/linux-2.6.20.nix {
inherit fetchurl stdenv perl mktemp module_init_tools;