From 9e8f8203677fa2d3bff8a54aa9311ef0dfb08b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Tue, 28 Nov 2023 09:45:49 +0100 Subject: [PATCH] productcompose: typo fix --- Build/ProductCompose.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/ProductCompose.pm b/Build/ProductCompose.pm index b77733c24..ea1aa5c70 100644 --- a/Build/ProductCompose.pm +++ b/Build/ProductCompose.pm @@ -106,7 +106,7 @@ sub parse { if ($dep->{'architectures'}) { my $match; for my $a (@architectures) { - $match if grep { $_ eq $a } @{$dep->{'architectures'} || []}; + $match = 1 if grep { $_ eq $a } @{$dep->{'architectures'} || []}; } next unless $match; }