configure: SC2034: glib_cflags and glib_ldflags appear unused.

Fix shellcheck warnings.
This commit is contained in:
Jani Nikula 2016-04-13 21:32:48 +03:00 committed by David Bremner
parent 8a75fcfa7b
commit b191de511e

5
configure vendored
View file

@ -413,8 +413,9 @@ have_glib=0
if pkg-config --exists 'glib-2.0 >= 2.22'; then if pkg-config --exists 'glib-2.0 >= 2.22'; then
printf "Yes.\n" printf "Yes.\n"
have_glib=1 have_glib=1
glib_cflags=$(pkg-config --cflags glib-2.0) # these are included in gmime cflags and ldflags
glib_ldflags=$(pkg-config --libs glib-2.0) # glib_cflags=$(pkg-config --cflags glib-2.0)
# glib_ldflags=$(pkg-config --libs glib-2.0)
else else
printf "No.\n" printf "No.\n"
errors=$((errors + 1)) errors=$((errors + 1))