From b09654b53a0d0ff560dfdab493439972a5ba0a35 Mon Sep 17 00:00:00 2001 From: Colin Edwards Date: Wed, 20 Dec 2023 23:23:18 -0600 Subject: [PATCH] build: Remove absolute path on pkg-config This allows it to be found on macOS and should fix linking libnfs with builds of the Android app --- build/pkg-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pkg-config.sh b/build/pkg-config.sh index 18ec25be6..52a55af9d 100755 --- a/build/pkg-config.sh +++ b/build/pkg-config.sh @@ -10,4 +10,4 @@ ROOT=`dirname "$BIN"` export PKG_CONFIG_DIR= export PKG_CONFIG_LIBDIR="${ROOT}/lib/pkgconfig:${ROOT}/share/pkgconfig" -exec /usr/bin/pkg-config "$@" +exec pkg-config "$@"