diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-09-12 14:00:29 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-09-12 14:00:29 +0000 |
commit | 134f6cd80d3ce6f59fb6f8cb8a5e10f6cd9cd4a1 (patch) | |
tree | 9771e127773b53f0b89d765ed793ef994fd26a43 /Rpmdrake/pkg.pm | |
parent | 949bf3915cee7a9ee65b34dd286a0bf003e03c09 (diff) | |
download | rpmdrake-134f6cd80d3ce6f59fb6f8cb8a5e10f6cd9cd4a1.tar rpmdrake-134f6cd80d3ce6f59fb6f8cb8a5e10f6cd9cd4a1.tar.gz rpmdrake-134f6cd80d3ce6f59fb6f8cb8a5e10f6cd9cd4a1.tar.bz2 rpmdrake-134f6cd80d3ce6f59fb6f8cb8a5e10f6cd9cd4a1.tar.xz rpmdrake-134f6cd80d3ce6f59fb6f8cb8a5e10f6cd9cd4a1.zip |
(warn_about_media) we don't really need to perform a costly
urpm::media::configure() here; urpm::media::read_config() is enough
Diffstat (limited to 'Rpmdrake/pkg.pm')
-rw-r--r-- | Rpmdrake/pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 0c595d94..45f9b3dc 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -166,7 +166,7 @@ sub warn_about_media { return if $::rpmdrake_options{'no-media-update'}; # we use our own instance of the urpmi db in order not to mess up with skip-list managment (#31092): - my $urpm = open_urpmi_db(); + my $urpm = fast_open_urpmi_db(); # do not update again media after installing/removing some packages: $::rpmdrake_options{'no-media-update'} ||= 1; |