From 51dfbd98b1f7f6b55792e45236c934bcad6e2474 Mon Sep 17 00:00:00 2001 From: orbea Date: Tue, 21 Nov 2017 09:04:55 -0800 Subject: [PATCH] qb: Prefer pkgconf over the legacy GNU pkg-config. --- qb/qb.comp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qb/qb.comp.sh b/qb/qb.comp.sh index f99c1fc124..147715443d 100644 --- a/qb/qb.comp.sh +++ b/qb/qb.comp.sh @@ -85,7 +85,7 @@ fi if [ -z "$PKG_CONF_PATH" ]; then PKG_CONF_PATH="none" - for pkgconf in pkg-config; do + for pkgconf in pkgconf pkg-config; do PKGCONF="$(exists "${CROSS_COMPILE}${pkgconf}")" || PKGCONF="" [ "$PKGCONF" ] && { PKG_CONF_PATH="$PKGCONF"