diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-21 15:18:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-21 15:18:21 +0000 |
commit | 548c46e38fe669786a35fa877797b1b2e1314798 (patch) | |
tree | 4662a803d1782a42c61a8842857e24ec341f181f /perl-install | |
parent | 62b8e3687ff94277483128ea86fff0ceb723f33b (diff) | |
download | drakx-backup-do-not-use-548c46e38fe669786a35fa877797b1b2e1314798.tar drakx-backup-do-not-use-548c46e38fe669786a35fa877797b1b2e1314798.tar.gz drakx-backup-do-not-use-548c46e38fe669786a35fa877797b1b2e1314798.tar.bz2 drakx-backup-do-not-use-548c46e38fe669786a35fa877797b1b2e1314798.tar.xz drakx-backup-do-not-use-548c46e38fe669786a35fa877797b1b2e1314798.zip |
fix typo ($::force_xf4 doesn't exist anymore)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfig/card.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/card.pm b/perl-install/Xconfig/card.pm index 74a5ede95..57ec26b06 100644 --- a/perl-install/Xconfig/card.pm +++ b/perl-install/Xconfig/card.pm @@ -474,7 +474,7 @@ NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.", xfree4_version if (arch() =~ /ppc/ && $ENV{DISPLAY}) { push @choices, { text => N("Xpmac (installation display driver)"), code => sub { #- HACK: re-allowing XFree 3 - $::force_xf4 = 0; + $force_xf4 = 0; $card->{server} = "Xpmac"; $card->{prefer_xf3} = 1; } }; |