* `*.gcroot' files can now containing multiple roots.

This commit is contained in:
Eelco Dolstra 2004-04-14 08:09:27 +00:00
parent a4d2b22c8c
commit b275f2ed3b
1 changed files with 7 additions and 3 deletions

View File

@ -26,10 +26,14 @@ foreach my $link (@links) {
$link = $linkdir . "/" . $link;
next if (!($link =~ /.gcroot$/));
open ROOT, "<$link" or die "cannot open $link: $!";
my $root = <ROOT>;
chomp $root;
while (<ROOT>) {
chomp;
foreach my $root (split ' ') {
die "bad root `$root' in file `$link'" unless $root =~ /^\S+$/;
push @roots, $root;
}
}
close ROOT;
push @roots, $root;
}
my $extraarg = "";