Remove extraneous whitespace between the object file and the ':'.

Thanks to Justin Morey <justin@68k.org> for the patch.


git-svn-id: svn://10.0.0.236/trunk@66639 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org 2000-04-21 01:28:58 +00:00
parent 83c749b56f
commit 839d44304a

View File

@ -37,7 +37,7 @@ $outfile = shift @ARGV;
# Parse dependency files
while ($line = <>) {
chomp $line;
($obj,$rest) = split /:\s+/, $line, 2;
($obj,$rest) = split /\s*:\s+/, $line, 2;
next if $obj eq '';
if ($line =~ /\\$/) {