Skip to content

Commit a634270

Browse files
committed
replace pkg-config link
1 parent efdaba7 commit a634270

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/actions/configure-macos/action.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ runs:
1010
run: |
1111
set -x
1212
BREW_OPT="$(brew --prefix)"/opt
13-
brew --cellar
14-
ls -l $BREW_OPT
1513
export PATH="$BREW_OPT/bison/bin:$PATH"
16-
export PATH="$(brew --cellar)/pkgconf/2.3.0/bin:$PATH"
17-
ls -l $(brew --cellar)/pkgconf/2.3.0/bin
18-
ln $(brew --cellar)/pkgconf/2.3.0/bin/pkgconf $(brew --cellar)/pkgconf/2.3.0/bin/pkg-config
14+
rm "$BREW_OPT/pkg-config"
15+
ln "$BREW_OPT/pkgconf" "$BREW_OPT/pkg-config"
16+
ls -l $BREW_OPT
1917
export PKG_CONFIG_PATH="$BREW_OPT/openssl@3/lib/pkgconfig:$PKG_CONFIG_PATH"
2018
export PKG_CONFIG_PATH="$BREW_OPT/curl/lib/pkgconfig:$PKG_CONFIG_PATH"
2119
export PKG_CONFIG_PATH="$BREW_OPT/libffi/lib/pkgconfig:$PKG_CONFIG_PATH"

0 commit comments

Comments
 (0)