From dab9d6c1af958b65c06e4773d82cb4c391eca6af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Sat, 16 Mar 2024 14:28:43 +0700 Subject: [PATCH] ci(azure-pipelines): XXX Don't install libxml2 with homebrew Seems like that shouldn't be done fore recent macOS versions. > libxml2 is keg-only, which means it was not symlinked into /usr/local, > because macOS already provides this software and installing another version in > parallel can cause all kinds of trouble. --- .azure-pipelines/steps/setup-emacs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/steps/setup-emacs.yml b/.azure-pipelines/steps/setup-emacs.yml index c650d5d..7f48baf 100644 --- a/.azure-pipelines/steps/setup-emacs.yml +++ b/.azure-pipelines/steps/setup-emacs.yml @@ -22,7 +22,7 @@ steps: # XXX: Please don't use homebrew! - bash: | set -e - brew install pkg-config gnutls libxml2 + brew install pkg-config gnutls # https://github.com/remacs/remacs/issues/155 (pkg-config) brew outdated pkg-config || brew upgrade pkg-config # https://github.com/remacs/remacs/issues/886 (libxml2, macOS 10.14)