diff options
author | Philip H <47042125+pheiduck@users.noreply.github.com> | 2022-10-15 14:17:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-10-15 14:17:37 +0100 |
commit | fa7bb1d937308a60280e070b01baba5342148ff7 (patch) | |
tree | 9f007bfcb8451e9d8f3c99ea257a904849bd51d1 /.github | |
parent | 13cdde39520220bb856cba16626327c706752b51 (diff) | |
download | vim-git-fa7bb1d937308a60280e070b01baba5342148ff7.tar.gz |
patch 9.0.0759: huge build on macos does not use Perlv9.0.0759
Problem: Huge build on macos does not use Perl.
Solution: Re-enable the Perl interface using "dynamic". (closes #11375)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d0ec4488..0e47142ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -317,8 +317,8 @@ jobs: normal) ;; huge) - # FIXME: --enable-perlinterp temporarily removed, it always fails - echo "CONFOPT=--enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp" + # Use "dynamic" for Perl otherwise it fails. + echo "CONFOPT=--enable-perlinterp=dynamic --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp" ;; esac ) >> $GITHUB_ENV |