summaryrefslogtreecommitdiffstats
path: root/perl-install/patch/patch-IMPS2.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-10-16 16:47:06 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-10-16 16:47:06 +0000
commit084911b4d40e7a9cd66a7d3b6a31ad10e8b196a6 (patch)
tree9ad4340aa575266ebe669454390b8318ad3b07e2 /perl-install/patch/patch-IMPS2.pl
parentf259bcd8d5a99ce0ed211f53e3951aafef9117c9 (diff)
downloaddrakx-084911b4d40e7a9cd66a7d3b6a31ad10e8b196a6.tar
drakx-084911b4d40e7a9cd66a7d3b6a31ad10e8b196a6.tar.gz
drakx-084911b4d40e7a9cd66a7d3b6a31ad10e8b196a6.tar.bz2
drakx-084911b4d40e7a9cd66a7d3b6a31ad10e8b196a6.tar.xz
drakx-084911b4d40e7a9cd66a7d3b6a31ad10e8b196a6.zip
- fix for bad da .mo charset
- ugly hack to allow IMPS2 switch to work
Diffstat (limited to 'perl-install/patch/patch-IMPS2.pl')
-rw-r--r--perl-install/patch/patch-IMPS2.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/perl-install/patch/patch-IMPS2.pl b/perl-install/patch/patch-IMPS2.pl
new file mode 100644
index 000000000..488b6ac11
--- /dev/null
+++ b/perl-install/patch/patch-IMPS2.pl
@@ -0,0 +1,9 @@
+use install_gtk;
+package install_gtk;
+
+my $old_createXconf = \&createXconf;
+undef *createXconf;
+*createXconf = sub {
+ symlink 'mouse', '/dev/cdrom';
+ &$old_createXconf;
+}