From a74832198ab36683a867c79b3d6ef2cac9baad55 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 19 Jun 2022 23:53:42 +0100 Subject: [PATCH] lib/configure: respect $PKG_CONFIG completely Signed-off-by: Sam James --- lib/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configure b/lib/configure index 1c3343a..85bf0b8 100755 --- a/lib/configure +++ b/lib/configure @@ -268,7 +268,7 @@ if [ "$sys" = linux ] ; then if [ "$HWDB" = yes -o "$HWDB" = no ] ; then echo "$HWDB (set manually)" else - if `command -v pkg-config >/dev/null && pkg-config --atleast-version=196 libudev` ; then + if `command -v $PKG_CONFIG >/dev/null && $PKG_CONFIG --atleast-version=196 libudev` ; then HWDB=yes else HWDB=no -- 2.39.2