summaryrefslogtreecommitdiffstats
path: root/perl-install/network/adsl.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-11-21 10:32:40 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-11-21 10:32:40 +0000
commit584e9c0f4dba22cb924a1bd407c247fe83b1629f (patch)
treeb09e7cd3df7ea0916b4d4bd3b976ea698a01955d /perl-install/network/adsl.pm
parenta73c1a6dc33c697db777929f80f9a8b00308601c (diff)
downloaddrakx-584e9c0f4dba22cb924a1bd407c247fe83b1629f.tar
drakx-584e9c0f4dba22cb924a1bd407c247fe83b1629f.tar.gz
drakx-584e9c0f4dba22cb924a1bd407c247fe83b1629f.tar.bz2
drakx-584e9c0f4dba22cb924a1bd407c247fe83b1629f.tar.xz
drakx-584e9c0f4dba22cb924a1bd407c247fe83b1629f.zip
- perl_checker fixes
- use my_gtk to transparently handle embedding
Diffstat (limited to 'perl-install/network/adsl.pm')
0 files changed, 0 insertions, 0 deletions
class='del'>- if (my @l = install::any::find_root_parts($o->{fstab}, $::prefix)) {
- # Don't list other archs as ugrading between archs is not supported
- @l = grep { $_->{arch} eq arch() } @l;
+ my @l = install::any::find_root_parts($o->{fstab}, $::prefix);
+ # Don't list other archs as ugrading between archs is not supported
+ @l = grep { $_->{arch} eq arch() } @l;
+ if (@l) {
log::l("proposing to upgrade partitions " . join(" ", map { $_->{part} && $_->{part}{device} } @l));