From 73f13240f11ad39cf9c81441dd9eba99898c3c85 Mon Sep 17 00:00:00 2001 From: Edward Loveall Date: Mon, 5 Dec 2022 09:19:28 -0500 Subject: [PATCH] Fix pkg_config path It was pointing to a directory that doesn't exist and causing problems with crystal --- zsh/dot-zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index bdb48be..d5a788d 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -101,4 +101,4 @@ export RIPGREP_CONFIG_PATH=~/.ripgreprc # require for crystal compiler. # See https://github.com/crystal-lang/crystal/issues/4745 -export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig:$PKG_CONFIG_PATH" +export PKG_CONFIG_PATH="/opt/homebrew/lib/pkgconfig:$PKG_CONFIG_PATH" -- 2.45.2