diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-09-23 00:38:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-09-23 00:38:28 +0000 |
commit | 37860db32a298e81d107848c7021f39427ff2e29 (patch) | |
tree | aca56a7afe2ac47312f7d69037dd2be7fe5da32a /perl-install/install_any.pm | |
parent | a2d6666a3797ac9d980855cc8a28cf9a6466a78c (diff) | |
download | drakx-37860db32a298e81d107848c7021f39427ff2e29.tar drakx-37860db32a298e81d107848c7021f39427ff2e29.tar.gz drakx-37860db32a298e81d107848c7021f39427ff2e29.tar.bz2 drakx-37860db32a298e81d107848c7021f39427ff2e29.tar.xz drakx-37860db32a298e81d107848c7021f39427ff2e29.zip |
no_comment
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(); } } |