aboutsummaryrefslogtreecommitdiffstats
path: root/rpmdrake
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-04-20 23:22:53 +0000
committerThierry Vignaud <tv@mageia.org>2013-04-20 23:22:53 +0000
commitc60ccd3efa3d24338ded284fcdf177c3fe8b76fb (patch)
treef9b86ccdd7bfb49cb7518171262711182c438ce3 /rpmdrake
parent6fa7f3442f07f1d8a9d91299a16486cc886d4c0f (diff)
downloadrpmdrake-c60ccd3efa3d24338ded284fcdf177c3fe8b76fb.tar
rpmdrake-c60ccd3efa3d24338ded284fcdf177c3fe8b76fb.tar.gz
rpmdrake-c60ccd3efa3d24338ded284fcdf177c3fe8b76fb.tar.bz2
rpmdrake-c60ccd3efa3d24338ded284fcdf177c3fe8b76fb.tar.xz
rpmdrake-c60ccd3efa3d24338ded284fcdf177c3fe8b76fb.zip
fix install dialog title (mga#9550)
rename a variable introduced by jvictor in commit r267936 on Apr 26 2010 ("Added auto_select and clean_cache options to conf file") that badly conflicted with urpmi's ::auto_select variable we were lucky it didn't break more...
Diffstat (limited to 'rpmdrake')
-rwxr-xr-xrpmdrake4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmdrake b/rpmdrake
index ae853309..2ed87b97 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -576,7 +576,7 @@ sub run_treeview_dialog {
[ $auto_select_string, undef,
sub {
my $box = $check_boxes{$auto_select_string};
- $auto_select->[0] = $box->get_active;
+ $auto_select_opt->[0] = $box->get_active;
$::rpmdrake_options{auto} = $box->get_active;
$urpm->{options}{auto} = $box->get_active;
},
@@ -663,7 +663,7 @@ sub run_treeview_dialog {
if (!$>) {
$check_boxes{$regexp_search_string}->set_active($use_regexp->[0]);
$check_boxes{$NVR_string}->set_active($NVR_searches->[0]);
- $check_boxes{$auto_select_string}->set_active($auto_select->[0]);
+ $check_boxes{$auto_select_string}->set_active($auto_select_opt->[0]);
$check_boxes{$updates_string}->set_active($compute_updates->[0]);
$check_boxes{$clean_cache_string}->set_active($clean_cache->[0]);
}