diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-12-18 12:03:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-12-18 12:03:23 +0000 |
commit | 7420d029bf74d41168a8072ccedc70e6b5b377af (patch) | |
tree | 4b5b3d2b5e7d5bdd75760f53ae50d40c44c94057 | |
parent | aab68369c51dca797bc98008753ac044de075798 (diff) | |
download | urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar.gz urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar.bz2 urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar.xz urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.zip |
disable dudf support (we've nothing server side)
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | urpm/args.pm | 2 | ||||
-rwxr-xr-x | urpmi | 4 |
3 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,6 @@ - urpmi o do not compute orphan packages when handling priority upgrades + o disable dudf support (we've nothing server side) Version 6.42 - 05 November 2011 diff --git a/urpm/args.pm b/urpm/args.pm index 12d4fee3..5fe00aea 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -365,7 +365,7 @@ my %options_spec = ( eval { - require urpm::dudf; + #require urpm::dudf; $options_spec{'urpmi'}{'force-dudf'} = \$::force_dudf; }; @@ -190,8 +190,8 @@ my $urpm = urpm->new_parse_cmdline or exit(1); my $dudf; eval { - require urpm::dudf; - $dudf = new urpm::dudf(\$urpm, $command_line, $force_dudf); + #require urpm::dudf; + #$dudf = new urpm::dudf(\$urpm, $command_line, $force_dudf); }; if (@ARGV && $auto_select) { |