diff options
author | Matt Watson <mattdangerw@gmail.com> | 2013-06-18 19:14:34 -0700 |
---|---|---|
committer | Matt Watson <mattdangerw@gmail.com> | 2013-06-18 19:14:34 -0700 |
commit | 751d9fe9b77c6d849c6aa18327cc3b4bd7e5cb38 (patch) | |
tree | 6a7c47c19fa45f8d14e0ade0aae982839acbe1e8 | |
parent | 82b909a40d3c165a43e5cb658cca0586e7f6aca3 (diff) |
Bumped automake requirement.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 94d7969..524049b 100644 --- a/configure.ac +++ b/configure.ac @@ -35,10 +35,10 @@ AC_INIT([Open Endless SDK], [_EOS_SDK_VERSION_MACRO], # Verify that the source directory can be found dnl AC_CONFIG_SRCDIR([src/hello.c]) # Initialize Automake: enable all warnings and do not insist on GNU standards -# Automake >= 1.11 required for silent rules +# Automake >= 1.13 required for serial-tests # no-portability suppresses warnings about syntax specific to GNU make # serial-tests uses the old-style test suite -AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign 1.11 serial-tests]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign 1.13 serial-tests]) # Avoid spewing garbage over the terminal ('make V=1' to see the garbage) AM_SILENT_RULES([yes]) # Initialize Libtool; don't build static libraries |