summaryrefslogtreecommitdiff
path: root/cygwin32
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-04-02 14:13:13 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-04-02 14:13:13 +0000
commit5bcc2b3c4243c75d999b1814d035e4f463dd6615 (patch)
tree2d2fb62181443d1d38569688c640f5cf01a93117 /cygwin32
parent3aeed370afcacdc526e9f8575b34e519df1ffe51 (diff)
downloadperl-5bcc2b3c4243c75d999b1814d035e4f463dd6615.tar.gz
Remove duplicate code in cygwin32/perlgcc (Blair Zajac)
p4raw-id: //depot/perl@839
Diffstat (limited to 'cygwin32')
-rw-r--r--cygwin32/perlgcc7
1 files changed, 0 insertions, 7 deletions
diff --git a/cygwin32/perlgcc b/cygwin32/perlgcc
index dbb9962ccf..202ed29a4f 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";