[project @ 2001-05-04 14:23:52 by rrt]
authorrrt <unknown>
Fri, 4 May 2001 14:23:52 +0000 (14:23 +0000)
committerrrt <unknown>
Fri, 4 May 2001 14:23:52 +0000 (14:23 +0000)
Script to change "cygwin1.dll" to something else, so that we can have our
own version of the cygwin DLL that doesn't clash with any installed DLLs,
for great justice.

ghc/InstallShield/fixdll.pl [new file with mode: 0644]

diff --git a/ghc/InstallShield/fixdll.pl b/ghc/InstallShield/fixdll.pl
new file mode 100644 (file)
index 0000000..1d3449d
--- /dev/null
@@ -0,0 +1,8 @@
+#!/usr/bin/perl -i.bak
+# Patch the cygwin dll to make a non-clashing version, for great justice
+
+while (<>) {
+  s/cygwin1/aybabtu/g;
+  s/c\000y\000g\000w\000i\000n\0001/a\000y\000b\000a\000b\000t\000u/g;
+  print;
+}