File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -376,8 +376,11 @@ for my $package (@packages) {
376376 print F $config ;
377377 if (defined $webpage ) {
378378 # override descr website with manifest website entry
379+ print " Found plugin website override: ${webpage} \n " ;
379380 print F " website=${webpage} \n " ;
380381 }
382+
383+ # special hack for mac: add universal fname
381384 $found = 1;
382385 last ;
383386 }
@@ -403,7 +406,12 @@ for my $package (@packages) {
403406
404407 print F " revision=\" $rev \"\n " ;
405408 foreach (@platforms_enabled ) {
406- print F " fname_${_}_$ARCH =\" $package -$rev$build -${_}-$ARCH .zip\"\n " ;
409+ if ($os eq ' mac' ) {
410+ print F " fname_${_}_universal=\" $package -$rev$build -${_}-universal.zip\"\n " ;
411+ }
412+ else {
413+ print F " fname_${_}_$ARCH =\" $package -$rev$build -${_}-$ARCH .zip\"\n " ;
414+ }
407415 }
408416 close F;
409417
You can’t perform that action at this time.
0 commit comments