mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-28 13:44:12 +01:00
configure: SC2034: glib_cflags and glib_ldflags appear unused.
Fix shellcheck warnings.
This commit is contained in:
parent
8a75fcfa7b
commit
b191de511e
1 changed files with 3 additions and 2 deletions
5
configure
vendored
5
configure
vendored
|
@ -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))
|
||||||
|
|
Loading…
Reference in a new issue