diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-10-27 08:23:15 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-10-27 08:23:15 +0000 |
commit | 05384c1a029f516e9fb57a1f19dff05814091ebc (patch) | |
tree | d00c371816140a039391eb628bb4e0995030251e /urpm | |
parent | 92336daa0e10734d8025e0a874c8e2279b9940a2 (diff) | |
download | urpmi-05384c1a029f516e9fb57a1f19dff05814091ebc.tar urpmi-05384c1a029f516e9fb57a1f19dff05814091ebc.tar.gz urpmi-05384c1a029f516e9fb57a1f19dff05814091ebc.tar.bz2 urpmi-05384c1a029f516e9fb57a1f19dff05814091ebc.tar.xz urpmi-05384c1a029f516e9fb57a1f19dff05814091ebc.zip |
Add the --strict-arch command-line option to urpmi and the strict-arch configuration file option
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/args.pm | 1 | ||||
-rw-r--r-- | urpm/cfg.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/urpm/args.pm b/urpm/args.pm index 523fbe78..ca447cc9 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -104,6 +104,7 @@ my %options_spec = ( $options{X} ||= $ENV{DISPLAY} && system('/usr/X11R6/bin/xtest', '') == 0 }, 'verify-rpm!' => sub { $urpm->{options}{'verify-rpm'} = $_[1] }, + 'strict-arch!' => sub { $urpm->{options}{'strict-arch'} = $_[1] }, 'norebuild!' => sub { $urpm->{options}{norebuild} = $_[1] }, 'test!' => \$::test, 'skip=s' => \$options{skip}, diff --git a/urpm/cfg.pm b/urpm/cfg.pm index d6c48d6a..3271996e 100644 --- a/urpm/cfg.pm +++ b/urpm/cfg.pm @@ -113,6 +113,7 @@ sub load_config ($) { |compress |keep |auto + |strict-arch |resume)(?:\s*:\s*(.*))?$/x ) { my $yes = $no ? 0 : 1; |