From ea3f6180e8dc668cd0c975b0a3f6d1ff0e1aa110 Mon Sep 17 00:00:00 2001 From: fanquake Date: Thu, 5 Dec 2024 15:43:27 +0000 Subject: [PATCH] ci: remove macOS gettext symlinking This doesn't do anything, because it's trying to create a symlink for a verison that doesn't exist. The version installed via brew is 0.22.5. In any case, on any recent macOS system, this should not be necessary. Changelog-None. --- .github/workflows/macos.yaml | 2 -- doc/getting-started/getting-started/installation.md | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 95561ec57393..ebf96f9f2b94 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -35,8 +35,6 @@ jobs: python3.10 -m poetry install python3.10 -m pip install -U --user mako - sudo ln -s /usr/local/Cellar/gettext/0.20.1/bin/xgettext /usr/local/opt - - name: Build and install run: | export CPATH=/opt/homebrew/include diff --git a/doc/getting-started/getting-started/installation.md b/doc/getting-started/getting-started/installation.md index 78494996f2cc..5eeafef38aa5 100644 --- a/doc/getting-started/getting-started/installation.md +++ b/doc/getting-started/getting-started/installation.md @@ -327,7 +327,6 @@ Assuming you have Xcode and Homebrew installed. Install dependencies: ```shell brew install autoconf automake libtool python3 gnu-sed gettext libsodium protobuf -ln -s /usr/local/Cellar/gettext/0.20.1/bin/xgettext /usr/local/opt export PATH="/usr/local/opt:$PATH" ```