summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-04-05 10:36:40 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-04-05 10:36:40 +0000
commit8076e536edbcc288ad1666a13b55f4eb2974fc4e (patch)
tree738d20b3612affc2fa957096eaa37bac05973e9f /perl-install/Xconfigurator.pm
parentab72206afef20f95422a6c901a6ff8ec04e18429 (diff)
downloaddrakx-backup-do-not-use-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar
drakx-backup-do-not-use-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar.gz
drakx-backup-do-not-use-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar.bz2
drakx-backup-do-not-use-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar.xz
drakx-backup-do-not-use-8076e536edbcc288ad1666a13b55f4eb2974fc4e.zip
(write_XF86Config): try to have $_ interpreted (otherwise you get things like ``InputDevice "Stylus$_" "AlwaysCore"'')
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index 254eb679e..cc884e74b 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -1236,11 +1236,11 @@ Section "ServerLayout"
InputDevice "Mouse2" "SendCoreEvents"
';
foreach (1..@{$o->{wacom}}) {
- print G '
+ print G qq(
InputDevice "Stylus$_" "AlwaysCore"
InputDevice "Eraser$_" "AlwaysCore"
InputDevice "Cursor$_" "AlwaysCore"
-';
+);
}
print G '
InputDevice "Keyboard1" "CoreKeyboard"