diff options
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 8b836ecd6..764808da0 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -758,7 +758,7 @@ It will then continue from the hard drive and the packages will remain available ); $w->main; } - !$_->{ignore} = $selection{$_->{name}} foreach @$hdlists; + $_->{ignore} = !$selection{$_->{name}} foreach @$hdlists; log::l("keeping media " . join ',', map { $_->{rpmsdir} } grep { !$_->{ignore} } @$hdlists); } |