diff options
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index d06f02d5c..d79dd42e3 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -47,7 +47,7 @@ sub getFile($) { } sub kernelVersion { - local $_ = readlink("$::o->{prefix}/boot/vmlinuz") or $::testing && "2.2.testversion" or die "I couldn't find the kernel package!"; + local $_ = readlink("$::o->{prefix}/boot/vmlinuz") || $::testing && "vmlinuz-2.2.testversion" or die "I couldn't find the kernel package!"; first(/vmlinuz-(.*)/); } @@ -60,7 +60,6 @@ sub getNextStep { sub spawnSync { return if $::o->{localInstall} || $::testing; - fork and return; while (1) { sleep(30); sync(); } } |