Skip to content

Commit 438ea69

Browse files
committed
Don't error out on Automake warnings
Automake tends to add new warnings or change which are enabled by some options between versions, so drop -Werror from the default Automake flags. Users can always pass the option manually when invoking Automake.
1 parent 0601892 commit 438ea69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_CONFIG_AUX_DIR([build-aux])
66
AC_CONFIG_MACRO_DIR([m4])
77
AC_CONFIG_SRCDIR([src/geanypy-plugin.c])
88
AC_CONFIG_HEADERS([src/plugin-config.h])
9-
AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror foreign])
9+
AM_INIT_AUTOMAKE([1.11.1 -Wall foreign])
1010
LT_INIT([disable-static])
1111

1212
# Configure build system and tools

0 commit comments

Comments
 (0)