aboutsummaryrefslogtreecommitdiff
path: root/validate-manifest.pl
diff options
context:
space:
mode:
Diffstat (limited to 'validate-manifest.pl')
-rwxr-xr-xvalidate-manifest.pl10
1 files changed, 8 insertions, 2 deletions
diff --git a/validate-manifest.pl b/validate-manifest.pl
index 4ea7aef..fbf7221 100755
--- a/validate-manifest.pl
+++ b/validate-manifest.pl
@@ -284,9 +284,15 @@ sub check_gdbserver
sub check_components_list
{
- my @required_components = qw(gmp mpfr mpc linux dejagnu binutils gcc gdb gdbserver );
+ my @required_components = qw(gmp mpfr mpc dejagnu binutils gcc gdb);
+ my @linux_target_components = qw(linux gdbserver);
my @win32_components = qw(expat python);
- my @valid_clibs = qw(glibc newlib eglibc);
+ my @valid_clibs = qw(glibc newlib eglibc);
+
+ if ($flag_info{target} =~ /linux/)
+ {
+ push @required_components, @linux_target_components
+ }
my @clibs=();
foreach my $comp (keys %component_info)