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
This commit is contained in:
Colin Edwards 2023-12-20 23:23:18 -06:00 committed by GitHub
parent 58fc857a2d
commit b09654b53a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 "$@"