aboutsummaryrefslogtreecommitdiffstats
path: root/rpmdrake.pm
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.pm
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.pm')
-rw-r--r--rpmdrake.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/rpmdrake.pm b/rpmdrake.pm
index 1432869f..8dcd76f8 100644
--- a/rpmdrake.pm
+++ b/rpmdrake.pm
@@ -64,7 +64,7 @@ our @EXPORT = qw(
$use_regexp
$typical_width
$clean_cache
- $auto_select
+ $auto_select_opt
add_distrib_update_media
add_medium_and_check
but
@@ -170,7 +170,7 @@ our $configfile = "$ENV{HOME}/.rpmdrake";
our $clean_cache;
# automatic select dependencies without user intervention
-our $auto_select;
+our $auto_select_opt;
our ($changelog_first_config, $compute_updates, $filter, $max_info_in_descr, $mode, $NVR_searches, $tree_flat, $tree_mode, $use_regexp);
our ($mandrakeupdate_wanted_categories, $ignore_debug_media, $offered_to_add_sources, $no_confirmation);
@@ -182,7 +182,7 @@ our %config = (
default => [ 0 ]
},
auto_select => {
- var => \$auto_select,
+ var => \$auto_select_opt,
default => [ 0 ]
},
changelog_first_config => { var => \$changelog_first_config, default => [ 0 ] },