From 255bf78304f1ea9754ad5a561a263a2888dbf9db Mon Sep 17 00:00:00 2001 From: Jeff Lawson Date: Tue, 13 Aug 2024 20:38:58 +0000 Subject: [PATCH] update mac ci for modern brew --- .github/workflows/mac-ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/mac-ci.yml b/.github/workflows/mac-ci.yml index f7745d9..1d81ea5 100644 --- a/.github/workflows/mac-ci.yml +++ b/.github/workflows/mac-ci.yml @@ -20,15 +20,10 @@ jobs: brew install readline || brew upgrade readline brew install autoconf || brew upgrade autoconf brew install automake || brew upgrade automake - sudo mkdir -p /usr/local - sudo ln -sf /usr/local/opt/tcl-tk/include /usr/local/include/tcl8.6 - sudo cp /usr/local/opt/tcl-tk/lib/libtcl* /usr/local/lib - sudo ln -sf /usr/local/opt/tcl-tk/bin/tclsh8.6 /usr/local/bin/tclsh - sudo ln -sf /usr/local/opt/tcl-tk/bin/tclsh8.6 /usr/local/bin/tclsh8.6 - name: configure run: | autoreconf -vif - ./configure --with-readline-includes=/usr/local/Cellar/readline/8.1/include --with-readline-library=/usr/local/Cellar/readline/8.1/lib --with-tcl=/usr/local/opt/tcl-tk/lib --with-tcl-includes=/usr/local/opt/tcl-tk/include + ./configure --with-readline-includes=/opt/homebrew/opt/readline/8.1/include --with-readline-library=/opt/homebrew/opt/readline/8.1/lib --with-tcl=/opt/homebrew/opt/tcl-tk/lib --with-tcl-includes=/opt/homebrew/opt/tcl-tk/include - name: make run: make - name: install