From 72ebd7fbe240b0cfe889025a1f05e318da8a5823 Mon Sep 17 00:00:00 2001 From: Lyndon Nerenberg Date: Mon, 15 Oct 2012 17:06:40 -0700 Subject: [PATCH] automake 1.12 generates some (apparently) harmless warnings, but the build fails becuase we invoke automake with -Werror. Remove -Werror from the automake options until the autotools gurus can patch things up. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2eb35f2..e4fcab6 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ AC_PREREQ([2.61]) AC_INIT([nmh], m4_normalize(m4_include([VERSION])), [nmh-workers@nongnu.org]) AC_CONFIG_SRCDIR([h/nmh.h]) AC_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) +AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) AC_CANONICAL_HOST -- 1.7.10.4