diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2022-06-29 03:41:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-29 03:41:40 +0200 |
| commit | 01fc5097d3b6921fce5c159e5c772dc1590eb847 (patch) | |
| tree | b36490b858b49ba379a23522760202bef5f4d610 /.github | |
| parent | 998dc07288c174937347b006ebe918fe0eb57f52 (diff) | |
| parent | 674787feaeced1fe51f6d344e28ca522808c1292 (diff) | |
| download | rneovim-01fc5097d3b6921fce5c159e5c772dc1590eb847.tar.gz rneovim-01fc5097d3b6921fce5c159e5c772dc1590eb847.tar.bz2 rneovim-01fc5097d3b6921fce5c159e5c772dc1590eb847.zip | |
Merge #19139 build(cmake): fix static libintl on macOS
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d2c4a5d702..b58488ef93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -102,6 +102,7 @@ jobs: brew uninstall $(brew uses --installed --recursive gettext) brew unlink gettext ln -sf "$(brew --prefix)/opt/$(readlink "${GETTEXT_PREFIX}")/bin"/* /usr/local/bin/ + ln -sf "$(brew --prefix)/opt/$(readlink "${GETTEXT_PREFIX}")/include"/* /usr/local/include/ rm -f "$GETTEXT_PREFIX" - name: Build release run: | |