From cde55897178fb79d194f9f4951a220fb7ca4cda9 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 6 May 2011 03:27:53 +0200 Subject: [PATCH] Silence a warning if pkg_config is not installed. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index da58c24ed8..3d08cb4d5b 100755 --- a/configure +++ b/configure @@ -761,7 +761,7 @@ check_pkg_config(){ headers="$2" funcs="$3" shift 3 - $pkg_config --exists $pkg || return + $pkg_config --exists $pkg 2>/dev/null || return pkg_cflags=$($pkg_config --cflags $pkg) pkg_libs=$($pkg_config --libs $pkg) check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&