* `*.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;
|
$link = $linkdir . "/" . $link;
|
||||||
next if (!($link =~ /.gcroot$/));
|
next if (!($link =~ /.gcroot$/));
|
||||||
open ROOT, "<$link" or die "cannot open $link: $!";
|
open ROOT, "<$link" or die "cannot open $link: $!";
|
||||||
my $root = <ROOT>;
|
while (<ROOT>) {
|
||||||
chomp $root;
|
chomp;
|
||||||
|
foreach my $root (split ' ') {
|
||||||
|
die "bad root `$root' in file `$link'" unless $root =~ /^\S+$/;
|
||||||
|
push @roots, $root;
|
||||||
|
}
|
||||||
|
}
|
||||||
close ROOT;
|
close ROOT;
|
||||||
push @roots, $root;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
my $extraarg = "";
|
my $extraarg = "";
|
||||||
|
|
Loading…
Reference in a new issue