]> granicus.if.org Git - apache/commitdiff
The only thing about perl that drives me crazy, how many times to
authorWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 25 Feb 2001 22:13:40 +0000 (22:13 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 25 Feb 2001 22:13:40 +0000 (22:13 +0000)
  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

index d447697d1d9ed7fe44d01d729822a635bbdee710..756f0a735c8790f305e81b2343d9324373f80365 100644 (file)
@@ -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;