[pisa-src] r1443 - trunk/configure.ac

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Fri, 30 Oct 2009 08:01:29 +0100

Author: biurrun
Date: Fri Oct 30 08:01:29 2009
New Revision: 1443

Log:
The OpenWrt autobuilder produces other types of warnings, so disable -Werror.

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Fri Oct 30 07:54:09 2009        (r1442)
+++ trunk/configure.ac  Fri Oct 30 08:01:29 2009        (r1443)
@@ -131,7 +131,8 @@
        pisa_with_hipl=yes
 else
         # HIPL generates many warnings, so we cannot enable -Werror with it.
-        AC_SUBST(CFLAGS, "$CFLAGS -Werror")
+        # FIXME: Disable -Werror until it builds with OpenWrt.
+        #AC_SUBST(CFLAGS, "$CFLAGS -Werror")
        AC_MSG_WARN("HIPL source tree cannot be found. So you could encounter 
some problems when hipl-related parts of codes are executed.")
        AC_MSG_WARN("Try giving a correct path to the hipl source tree with the 
--with-hipl option. You can see usage with ./configure -h.")
        pisa_with_hipl=no

Other related posts:

  • » [pisa-src] r1443 - trunk/configure.ac - Diego Biurrun