Skip to content
Snippets Groups Projects
Commit 777a6a36 authored by sof's avatar sof
Browse files

[project @ 1999-09-21 09:19:57 by sof]

when mangling gcc output, make sure we distinguish between a \ at EOL and a \ in DOS paths
parent 41b509c4
No related merge requests found
......@@ -178,7 +178,7 @@ sub slurp_file { # follows an example in the `open' item in perl man page
$dep_contents .= $_;
}
($deps = $dep_contents) =~ s|^[^:]+:(.*)$|$1|g;
$deps =~ s|\\| |g;
$deps =~ s| \\| |g;
@Deps = split(/ +/, $deps);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment