Skip to content

Commit

Permalink
productcompose: Export baseiso dependency as package dep
Browse files Browse the repository at this point in the history
We can not use the provides because it is a product build unfortunatly.
Therefore we have to follow the baseiso-$name convention for the
package name.
  • Loading branch information
adrianschroeter committed Jan 30, 2025
1 parent d71cbf2 commit 8a6fc45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Build/ProductCompose.pm
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ sub parse {
# Unordered repositories is disabling repository layering. This will
# offer all binary versions of all reprositories to the build tool:
push @{$pkgs}, '--unorderedproductrepos' if grep {$_ eq 'OBS_unordered_product_repos'} @{$data->{'build_options'}};
# require the configured baseiso
push @{$pkgs}, "baseiso($ret->{'baseiso'})" if $ret->{'baseiso'};
# require the configured baseiso. We can not use the provides because it is a product build unfortunatly
push @{$pkgs}, "baseiso-$ret->{'baseiso'}" if $ret->{'baseiso'};
$ret->{'deps'} = $pkgs;

# We have currently no option to configure own path list for the product on purpose
Expand Down

0 comments on commit 8a6fc45

Please sign in to comment.