From: William A. Rowe Jr Date: Sun, 25 Feb 2001 22:13:40 +0000 (+0000) Subject: The only thing about perl that drives me crazy, how many times to X-Git-Tag: 2.0.14~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4bd039f19e3841fce50d12faf5da247f88bc148;p=apache The only thing about perl that drives me crazy, how many times to reescape an escaped char ;-/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88335 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/fixwin32mak.pl b/build/fixwin32mak.pl index d447697d1d..756f0a735c 100644 --- a/build/fixwin32mak.pl +++ b/build/fixwin32mak.pl @@ -14,7 +14,6 @@ chdir '..'; $root = cwd; $root =~ s|.:(.*)|cd "$1|; $root =~ s|/|\\\\|g; -print $root . "\n"; find(\&fixcwd, '.'); sub fixcwd { @@ -22,7 +21,7 @@ sub fixcwd { $repl = $File::Find::dir; $repl =~ s|^./||; $repl =~ s|[^\./]+|..|g; - $repl =~ s|/|\\\\|; + $repl =~ s|/|\\|; $oname = $_; $tname = '.#' . $_; $verchg = 0;