From 4afb3252d643737905271addc850f96dd2cb3e7b Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 19 Dec 2024 14:33:06 -0500 Subject: [PATCH] chore: use `pkgconf` rather than `pkg-config` for brew builds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cd82f1f..f405852 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ run: install-deps: ifeq ($(uname_S), Darwin) # sqlite3 is preinstalled on macOS - brew install pkg-config libpq mysql-client + brew install pkgconf libpq mysql-client endif ifeq ($(uname_S), Linux) sudo apt install -y pkg-config libsqlite3-dev libpq-dev libmysqlclient-dev