From 4f8196b36fd432fc1e6911e7f3bf764f4a4abcd8 Mon Sep 17 00:00:00 2001 From: SwingURM Date: Sat, 14 Feb 2026 04:23:34 +0800 Subject: [PATCH] use PKG_CONFIG_LIBDIR instead of PKG_CONFIG_PATH --- thirdparty/build-thirdparty.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh index 330a5bc51a96d3..3137920125399b 100755 --- a/thirdparty/build-thirdparty.sh +++ b/thirdparty/build-thirdparty.sh @@ -198,10 +198,10 @@ ln -sf lib64 lib popd # Configure the search paths for pkg-config and cmake -export PKG_CONFIG_PATH="${TP_DIR}/installed/lib64/pkgconfig" +export PKG_CONFIG_LIBDIR="${TP_DIR}/installed/lib64/pkgconfig" export CMAKE_PREFIX_PATH="${TP_DIR}/installed" -echo "PKG_CONFIG_PATH: ${PKG_CONFIG_PATH}" +echo "PKG_CONFIG_LIBDIR: ${PKG_CONFIG_LIBDIR}" echo "CMAKE_PREFIX_PATH: ${CMAKE_PREFIX_PATH}" check_prerequest() {