summaryrefslogtreecommitdiffstats
path: root/perl-install/install_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-31 15:18:09 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-31 15:18:09 +0000
commit51039844febe1dc7c3f7ac5b3409f00e1679ab76 (patch)
tree1852183fcf4865ea2c78c5acc8a67d731f13df11 /perl-install/install_gtk.pm
parented72bb62ca097fa7a874953b9fad9a60b04fed63 (diff)
downloaddrakx-backup-do-not-use-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar
drakx-backup-do-not-use-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar.gz
drakx-backup-do-not-use-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar.bz2
drakx-backup-do-not-use-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar.xz
drakx-backup-do-not-use-51039844febe1dc7c3f7ac5b3409f00e1679ab76.zip
replace "$foo" with $foo
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r--perl-install/install_gtk.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm
index 712fbbcda..3ffb7991e 100644
--- a/perl-install/install_gtk.pm
+++ b/perl-install/install_gtk.pm
@@ -224,7 +224,7 @@ if (arch() =~ /^ia64/) {
require Xconfig::card;
my ($card) = Xconfig::card::probe();
Xconfig::card::add_to_card__using_Cards($card, $card->{type}) if $card && $card->{type};
- output($file, <<END);
+ output($file, sprintf(<<'END', $mouse_type, $card->{driver}));
Section "Files"
FontPath "/usr/X11R6/lib/X11/fonts:unscaled"
@@ -241,7 +241,7 @@ EndSection
Section "InputDevice"
Identifier "Mouse"
Driver "mouse"
- Option "Protocol" "$mouse_type"
+ Option "Protocol" "%s"
Option "Device" "/dev/mouse"
EndSection
@@ -253,7 +253,7 @@ EndSection
Section "Device"
Identifier "device"
- Driver "$card->{driver}"
+ Driver "%s"
EndSection
Section "Screen"