diff options
author | Francois Pons <fpons@mandriva.com> | 2001-10-18 15:12:00 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-10-18 15:12:00 +0000 |
commit | fbe210fd00a69f94803de4131fe151c19243818c (patch) | |
tree | 07b2a0f6bcc3ce0cd145aff0533c8aef9aac98b3 | |
parent | b76137a2bdfea73e0b12a85a11a2f429a0891b52 (diff) | |
download | drakx-fbe210fd00a69f94803de4131fe151c19243818c.tar drakx-fbe210fd00a69f94803de4131fe151c19243818c.tar.gz drakx-fbe210fd00a69f94803de4131fe151c19243818c.tar.bz2 drakx-fbe210fd00a69f94803de4131fe151c19243818c.tar.xz drakx-fbe210fd00a69f94803de4131fe151c19243818c.zip |
fix ia64 glitches with /usr/X11R6/lib/X11/Cards (now use rgb.txt instead).
-rwxr-xr-x | perl-install/standalone/XFdrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake index 884e476e1..891722d50 100755 --- a/perl-install/standalone/XFdrake +++ b/perl-install/standalone/XFdrake @@ -46,7 +46,7 @@ my $in = 'interactive'->vnew('su', 'X'); -r '/etc/modules.conf' and modules::mergein_conf('/etc/modules.conf'); -my $f = "/usr/X11R6/lib/X11/Cards"; +my $f = "/usr/X11R6/lib/X11/rgb.txt"; #- this one is on all platform (instead of Cards ?) $in->do_pkgs->install('XFree86', 'XFree86-75dpi-fonts') if !-e $f; -e $f or die "install XFree86 first!\n"; |