diff options
author | Carlo Cabrera <30379873+carlocab@users.noreply.github.com> | 2022-06-29 01:03:42 +0800 |
---|---|---|
committer | Carlo Cabrera <30379873+carlocab@users.noreply.github.com> | 2022-06-29 02:19:45 +0800 |
commit | 674787feaeced1fe51f6d344e28ca522808c1292 (patch) | |
tree | c3ed78558182add0b6d1d265b75cb8b16db99052 | |
parent | be40ba68a808b61117fb11f7f035b7f205a86dac (diff) | |
download | rneovim-674787feaeced1fe51f6d344e28ca522808c1292.tar.gz rneovim-674787feaeced1fe51f6d344e28ca522808c1292.tar.bz2 rneovim-674787feaeced1fe51f6d344e28ca522808c1292.zip |
ci(release): link `gettext` include directory
Our previous mangling of gettext broke the `HAVE_WORKING_LIBINTL` test
because it prevented CMake from finding `libintl.h`. Let's fix that by
linking Gettext's `include` directory into `/usr/local` too.
-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: | |