diff options
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 1ad0e6391..cd658ad32 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -423,6 +423,7 @@ Is a firmware needed by some HW? sub is_firmware_needed { my ($o) = @_; + return 0 if $::o->{match_all_hardware}; state $res; $res = is_firmware_needed_($o) if !defined $res; $res; |