* `*.gcroot' files can now containing multiple roots.
This commit is contained in:
parent
a4d2b22c8c
commit
b275f2ed3b
|
@ -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;
|
||||
close ROOT;
|
||||
while (<ROOT>) {
|
||||
chomp;
|
||||
foreach my $root (split ' ') {
|
||||
die "bad root `$root' in file `$link'" unless $root =~ /^\S+$/;
|
||||
push @roots, $root;
|
||||
}
|
||||
}
|
||||
close ROOT;
|
||||
}
|
||||
|
||||
my $extraarg = "";
|
||||
|
|
Loading…
Reference in a new issue