From ed4dae3d0c76967fca379b0a6cd02c713ca8bcf9 Mon Sep 17 00:00:00 2001 From: rrt Date: Fri, 4 May 2001 14:23:52 +0000 Subject: [PATCH] [project @ 2001-05-04 14:23:52 by rrt] 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 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ghc/InstallShield/fixdll.pl diff --git a/ghc/InstallShield/fixdll.pl b/ghc/InstallShield/fixdll.pl new file mode 100644 index 0000000..1d3449d --- /dev/null +++ b/ghc/InstallShield/fixdll.pl @@ -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; +} -- 1.7.10.4