From: Jörg Krause Date: Wed, 21 Sep 2016 23:31:42 +0000 (+0200) Subject: package/ola: disable fatal warnings for host variant X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f15f969aa7e5691abdbee81e9af21c3308f9a6a;p=buildroot.git package/ola: disable fatal warnings for host variant By default the build system of OLA passes '-Werror' to GCC. The aborts compilation with GCC 6: ''' error: ‘template class std::auto_ptr’ is deprecated [-Werror=deprecated-declarations] ''' The target variant already passes the option "-disable-fatal-warnings" to the build system to disable '-Werror'. Do it for the host variant to to fix build with host GCC 6. Signed-off-by: Jörg Krause Signed-off-by: Thomas Petazzoni --- diff --git a/package/ola/ola.mk b/package/ola/ola.mk index 6f62a176c2..75ab25e164 100644 --- a/package/ola/ola.mk +++ b/package/ola/ola.mk @@ -40,7 +40,8 @@ HOST_OLA_CONF_OPTS = \ --disable-examples \ --disable-unittests \ --disable-doxygen-html \ - --disable-doxygen-doc + --disable-doxygen-doc \ + --disable-fatal-warnings # On the host side, we only need ola_protoc_plugin, so build and install this # only.