From f7146ea652fb80a51d6cf5c9e385d060ff30a5f2 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 28 Sep 2014 08:01:18 +0200 Subject: [PATCH] environment/pkg-config: unset PKG_CONFIG; find it via PATH instead. ... otherwise some pkgs fail to build due to host vs target (gtk+3). --- common/environment/configure/pkg-config.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/environment/configure/pkg-config.sh b/common/environment/configure/pkg-config.sh index 288e2620eb6..bf81c5f9afa 100644 --- a/common/environment/configure/pkg-config.sh +++ b/common/environment/configure/pkg-config.sh @@ -3,6 +3,3 @@ if [ -z "$CHROOT_READY" ]; then export PKG_CONFIG_PATH="${XBPS_MASTERDIR}/usr/lib/pkgconfig:${XBPS_MASTERDIR}/usr/share/pkgconfig" fi -if [ -n "$CROSS_BUILD" ]; then - export PKG_CONFIG="${XBPS_CROSS_TRIPLET}-pkg-config" -fi