Added -Wno-unused-but-set-variable to MYFLAGS in configure.

This will prevent new users of the codebase from receiving a lot of noise on first run
This commit is contained in:
Thomas Arp 2016-11-26 15:42:44 +01:00 committed by wyld-sw
parent bc786ae015
commit d6ef378e4f

2
configure vendored
View file

@ -896,7 +896,7 @@ echo "$ac_t""$ac_cv_gcc_fnb" 1>&6
MYFLAGS="-Wall" MYFLAGS="-Wall"
else else
if test ${ac_cv_gcc_ncs:-ERROR} = yes; then if test ${ac_cv_gcc_ncs:-ERROR} = yes; then
MYFLAGS="-Wall -Wno-char-subscripts" MYFLAGS="-Wall -Wno-char-subscripts -Wno-unused-but-set-variable"
else else
MYFLAGS="" MYFLAGS=""
fi fi