Skip to content

Commit

Permalink
patch 9.0.0773: huge build on macos uses dynamic Perl
Browse files Browse the repository at this point in the history
Problem:    Huge build on macos uses dynamic Perl.
Solution:   Use built-in Perl, uninstall the brew one. (closes #11382)
  • Loading branch information
pheiduck authored and brammool committed Oct 16, 2022
1 parent 501e777 commit d094e58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -304,6 +304,7 @@ jobs:
run: |
brew install lua
echo "LUA_PREFIX=/usr/local" >> $GITHUB_ENV
brew uninstall perl
- name: Set up environment
run: |
Expand All @@ -317,8 +318,7 @@ jobs:
normal)
;;
huge)
# Use "dynamic" for Perl otherwise it fails.
echo "CONFOPT=--enable-perlinterp=dynamic --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
;;
esac
) >> $GITHUB_ENV
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
773,
/**/
772,
/**/
Expand Down

0 comments on commit d094e58

Please sign in to comment.