From 034951dd92c1e697ba1e694a1fbb1e56511b8a2f Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Sat, 21 May 2022 03:37:58 +0200 Subject: [PATCH] Ports: Remove the `/usr/lib` pkg-config path Our Ports are exclusively installed to `/usr/local/lib`, so having `/usr/lib` in there as well doesn't make much sense. --- Ports/.hosted_defs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/.hosted_defs.sh b/Ports/.hosted_defs.sh index 3eea400508..55e84fccbd 100644 --- a/Ports/.hosted_defs.sh +++ b/Ports/.hosted_defs.sh @@ -45,6 +45,6 @@ fi export PKG_CONFIG_DIR="" export PKG_CONFIG_SYSROOT_DIR="${SERENITY_BUILD_DIR}/Root" -export PKG_CONFIG_LIBDIR="${PKG_CONFIG_SYSROOT_DIR}/usr/lib/pkgconfig/:${PKG_CONFIG_SYSROOT_DIR}/usr/local/lib/pkgconfig" +export PKG_CONFIG_LIBDIR="${PKG_CONFIG_SYSROOT_DIR}/usr/local/lib/pkgconfig" export SERENITY_INSTALL_ROOT="${SERENITY_BUILD_DIR}/Root"