summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 495d12acd..ea11a0455 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -634,13 +634,13 @@ sub read_rpmsrate {
my $inv = s/^!//;
$inv xor do {
if (my ($p) = /^HW"(.*)"/) {
- return $inv ^ $::o->{build_live_system} || detect_devices::matching_desc__regexp($p);
+ return $::o->{build_live_system} ? !$inv : detect_devices::matching_desc__regexp($p);
} elsif (($p) = /^HW_CAT"(.*)"/) {
- return $inv ^ $::o->{build_live_system} || modules::probe_category($p);
+ return $::o->{build_live_system} ? !$inv : modules::probe_category($p);
} elsif (($p) = /^DRIVER"(.*)"/) {
- return $inv ^ $::o->{build_live_system} || detect_devices::matching_driver__regexp($p);
+ return $::o->{build_live_system} ? !$inv : detect_devices::matching_driver__regexp($p);
} elsif (($p) = /^TYPE"(.*)"/) {
- return $inv ^ $::o->{build_live_system} || detect_devices::matching_type($p);
+ return $::o->{build_live_system} ? !$inv : detect_devices::matching_type($p);
} else {
$rpmsrate_flags_chosen->{$_};
}