From: Malcolm Beattie <mbeattie@sable.ox.ac.uk>
Date: Thu, 2 Apr 1998 14:13:13 +0000 (+0000)
Subject: Remove duplicate code in cygwin32/perlgcc (Blair Zajac)
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5bcc2b3c4243c75d999b1814d035e4f463dd6615;p=p5sagit%2Fp5-mst-13.2.git

Remove duplicate code in cygwin32/perlgcc (Blair Zajac)

p4raw-id: //depot/perl@839
---

diff --git a/cygwin32/perlgcc b/cygwin32/perlgcc
index dbb9962..202ed29 100644
--- a/cygwin32/perlgcc
+++ b/cygwin32/perlgcc
@@ -60,13 +60,6 @@ $libdir =~ s/libcygwin\.a//g;
 $crt0   =~ s:\\:/:g;
 $libdir =~  s:\\:/:g;
 
-# when $crt0 and $libdir get used in the system calls below, the \'s
-# from the gcc -print-file-name get used to create special characters,
-# such as \n, \t.  Replace the \'s with /'s so that this does not
-# happen:
-$crt0   =~ s:\\:/:g;
-$libdir =~ s:\\:/:g;
-
 # Link exe:
 $command = "ld --base-file perl.base -o perl.exe $crt0 $obsString $libstring -L$libdir $libflagString";
 print "$command\n";