diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-10 13:59:52 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-10 13:59:52 +0000 |
commit | 39b9651edbc39fb0167623823dddb02c52308f23 (patch) | |
tree | ae80f27e3ea6e7ac812781dceca59fc579305a75 /perl-install | |
parent | e702e5f9cf56ceeafd933188615a1a76b199370c (diff) | |
download | drakx-39b9651edbc39fb0167623823dddb02c52308f23.tar drakx-39b9651edbc39fb0167623823dddb02c52308f23.tar.gz drakx-39b9651edbc39fb0167623823dddb02c52308f23.tar.bz2 drakx-39b9651edbc39fb0167623823dddb02c52308f23.tar.xz drakx-39b9651edbc39fb0167623823dddb02c52308f23.zip |
perl checko
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 2ea0cc363..c38ba4449 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -934,7 +934,7 @@ sub configurePrinter { my $printer = $o->{printer} ||= {}; eval { add2hash($printer, printer::main::getinfo($o->{prefix})) }; - $printer->{PAPERSIZE} = ($o->{locale}{lang} eq 'en_US' || $o->{locale}{country} eq 'CA') ? 'Letter' : 'A4'; + $printer->{PAPERSIZE} = $o->{locale}{lang} eq 'en_US' || $o->{locale}{country} eq 'CA' ? 'Letter' : 'A4'; printer::printerdrake::main($printer, $o, $ask_multiple_printer, sub { install_interactive::upNetwork($o, 'pppAvoided') }); } |