Skip to content

Commit

Permalink
[backend] BuildJob/BuildEnv: remove stray "1" parameter in read_gbininfo
Browse files Browse the repository at this point in the history
The method in the context does not have the "dontmerge" flag.
  • Loading branch information
mlschroe committed Mar 6, 2023
1 parent feb6782 commit 1c22584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/BSSched/BuildJob/BuildEnv.pm
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ sub build {
# nope, need to search package data as well
for my $aprp (@{$ctx->{'prpsearchpath'}}) {
my ($aprojid, $arepoid) = split('/', $aprp, 2);
my $gbininfo = $ctx->read_gbininfo($aprp, $arch, 1) || {};
my $gbininfo = $ctx->read_gbininfo($aprp, $arch) || {};
for my $packid (sort keys %$gbininfo) {
for (map {$gbininfo->{$packid}->{$_}} sort keys %{$gbininfo->{$packid}}) {
next unless $_->{'name'} && $_->{'hdrmd5'};
Expand Down

0 comments on commit 1c22584

Please sign in to comment.