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

Thanks to Justin Morey <justin@68k.org> for the patch.
This commit is contained in:
cls%seawood.org 2000-04-21 01:28:58 +00:00
parent 595465200a
commit bcde450516

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 =~ /\\$/) {