From: rrt Date: Fri, 4 May 2001 14:23:52 +0000 (+0000) Subject: [project @ 2001-05-04 14:23:52 by rrt] X-Git-Tag: Approximately_9120_patches~1997 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=ed4dae3d0c76967fca379b0a6cd02c713ca8bcf9 [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. --- 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; +}