summaryrefslogtreecommitdiffstats
path: root/perl-install/patch/patch-IMPS2.pl
diff options
context:
space:
mode:
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;
+}