From: Jani Nikula Date: Wed, 13 Apr 2016 18:32:48 +0000 (+0300) Subject: configure: SC2034: glib_cflags and glib_ldflags appear unused. X-Git-Tag: 0.23_rc0~125 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=b191de511e6148112fa2432779f6dc6c7cb501f9 configure: SC2034: glib_cflags and glib_ldflags appear unused. Fix shellcheck warnings. --- 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))