diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-04-14 17:02:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-04-14 17:02:25 +0000 |
commit | 8c2d11a405922f712021f97e3b1f7e9dbdaaea0d (patch) | |
tree | 5edd04f8c2b511a1fe435bc53f0b0363ed66aecb | |
parent | 63b5d583169d3fe9e3dcb1af38641f1ba126f6c3 (diff) | |
download | drakx-backup-do-not-use-8c2d11a405922f712021f97e3b1f7e9dbdaaea0d.tar drakx-backup-do-not-use-8c2d11a405922f712021f97e3b1f7e9dbdaaea0d.tar.gz drakx-backup-do-not-use-8c2d11a405922f712021f97e3b1f7e9dbdaaea0d.tar.bz2 drakx-backup-do-not-use-8c2d11a405922f712021f97e3b1f7e9dbdaaea0d.tar.xz drakx-backup-do-not-use-8c2d11a405922f712021f97e3b1f7e9dbdaaea0d.zip |
(createXconf): ensure the mouse device is created (mainly for auto_inst)
-rw-r--r-- | perl-install/install_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 6c3f54873..378e66b6b 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -211,7 +211,7 @@ sub createXconf { my ($file, $mouse_type, $mouse_dev, $wacom_dev) = @_; devices::make("/dev/kbd") if arch() =~ /^sparc/; #- used by Xsun style server. - symlinkf($mouse_dev, "/dev/mouse"); + symlinkf(devices::make($mouse_dev), "/dev/mouse"); #- needed for imlib to start on 8-bit depth visual. symlink("/tmp/stage2/etc/imrc", "/etc/imrc"); |