From b4bd039f19e3841fce50d12faf5da247f88bc148 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Sun, 25 Feb 2001 22:13:40 +0000 Subject: [PATCH] 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 --- build/fixwin32mak.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -- 2.40.0