From b191de511e6148112fa2432779f6dc6c7cb501f9 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Wed, 13 Apr 2016 21:32:48 +0300 Subject: [PATCH] configure: SC2034: glib_cflags and glib_ldflags appear unused. Fix shellcheck warnings. --- configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index d4f56b90..f3498e3e 100755 --- a/configure +++ b/configure @@ -413,8 +413,9 @@ have_glib=0 if pkg-config --exists 'glib-2.0 >= 2.22'; then printf "Yes.\n" have_glib=1 - glib_cflags=$(pkg-config --cflags glib-2.0) - glib_ldflags=$(pkg-config --libs glib-2.0) + # these are included in gmime cflags and ldflags + # glib_cflags=$(pkg-config --cflags glib-2.0) + # glib_ldflags=$(pkg-config --libs glib-2.0) else printf "No.\n" errors=$((errors + 1)) -- 2.43.0