diff options
author | Paul Fertser <fercerpav@gmail.com> | 2013-07-20 21:39:55 +0400 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2013-07-30 11:56:02 +0000 |
commit | 01a8c7367d4dd09a6bd86dd55b0af7187cbdebc0 (patch) | |
tree | dc8e63950e11434fcdf575ae6aef80f4060e0e0f /configure.ac | |
parent | 3b4a8af80d9cf3fb370c1177c2cf81f9c0a2e5e9 (diff) | |
download | riscv-openocd-01a8c7367d4dd09a6bd86dd55b0af7187cbdebc0.zip riscv-openocd-01a8c7367d4dd09a6bd86dd55b0af7187cbdebc0.tar.gz riscv-openocd-01a8c7367d4dd09a6bd86dd55b0af7187cbdebc0.tar.bz2 |
automake: use subdir-objects option
Automake 1.14 introduced several non-fatal warnings that should help
projects prepare to the next major automake release (2.0).
Considering the way OpenOCD automake files are written, using
subdir-objects doesn't have any adverse effects, so enable it for the
future compatibility.
Change-Id: I3e7fd93d1b53c5a7ed00ec0f03d2d1510a07f516
Reported-by: Freddie Chopin <freddie_chopin@op.pl>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/1517
Tested-by: jenkins
Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1895813..623e631 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_CONFIG_SRCDIR([src/openocd.c]) m4_include([config_subdir.m4])dnl -AM_INIT_AUTOMAKE([-Wall -Wno-portability dist-bzip2 dist-zip]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability dist-bzip2 dist-zip subdir-objects]) AC_CONFIG_HEADERS([config.h]) AH_BOTTOM([ |