From d6ef378e4f810dbfc9401b177102cb78a4f89c93 Mon Sep 17 00:00:00 2001 From: Thomas Arp Date: Sat, 26 Nov 2016 15:42:44 +0100 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 5bd8ad1..73db816 100755 --- a/configure +++ b/configure @@ -896,7 +896,7 @@ echo "$ac_t""$ac_cv_gcc_fnb" 1>&6 MYFLAGS="-Wall" else 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 MYFLAGS="" fi