diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-31 15:18:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-31 15:18:09 +0000 |
commit | 51039844febe1dc7c3f7ac5b3409f00e1679ab76 (patch) | |
tree | 1852183fcf4865ea2c78c5acc8a67d731f13df11 /perl-install/install_gtk.pm | |
parent | ed72bb62ca097fa7a874953b9fad9a60b04fed63 (diff) | |
download | drakx-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar drakx-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar.gz drakx-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar.bz2 drakx-51039844febe1dc7c3f7ac5b3409f00e1679ab76.tar.xz drakx-51039844febe1dc7c3f7ac5b3409f00e1679ab76.zip |
replace "$foo" with $foo
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r-- | perl-install/install_gtk.pm | 6 |
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" |