Skip to content

Commit 4a60182

Browse files
committedJul 5, 2024·
productcompose: transport the __all__ packageset as '*' package
'*' is our internal marker for all packages, but we want a speaking string in productcompose files. This is to support builds which take all available packages.
1 parent adf1ba7 commit 4a60182

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎Build/ProductCompose.pm

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ sub get_pkgset {
7676
$flavor = '' unless defined $flavor;
7777
my @seenps;
7878
my $lasts;
79+
80+
# asterisk is our internal marker for all packages
81+
return ['*'] if $setname eq '__all__';
82+
7983
for my $s (@$packagesets) {
8084
push @seenps, $lasts if defined $lasts;
8185
$lasts = $s;

0 commit comments

Comments
 (0)
Please sign in to comment.