diff options
author | Tom Tromey <tom@tromey.com> | 2019-09-28 06:02:06 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-10-23 09:06:20 -0600 |
commit | 4d0b984b970b9526d267ada259b62ec2c42cfb24 (patch) | |
tree | c90e34f38c6675a913aa211f5ea8b6c6d4b172e5 /gdb/gdbserver | |
parent | de6d8dc25cf728dbb748eeeb8d35642332cc309b (diff) | |
download | gdb-4d0b984b970b9526d267ada259b62ec2c42cfb24.zip gdb-4d0b984b970b9526d267ada259b62ec2c42cfb24.tar.gz gdb-4d0b984b970b9526d267ada259b62ec2c42cfb24.tar.bz2 |
Use m4_include, not sinclude in .m4 files
Pedro pointed out that sinclude does not error if a file is missing.
This patch changes gdb to only use m4_include, which seems more
correct.
gdb/ChangeLog
2019-10-23 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
* acinclude.m4: Use m4_include, not sinclude.
gdb/gdbserver/ChangeLog
2019-10-23 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
* acinclude.m4: Use m4_include, not sinclude.
gdb/testsuite/ChangeLog
2019-10-23 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
* aclocal.m4: Use m4_include, not sinclude.
Change-Id: I970362e0af7875f9f72796401126acf0ff6dba11
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/acinclude.m4 | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index fa78eba..d48b3de 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2019-10-23 Tom Tromey <tom@tromey.com> + + * configure: Rebuild. + * acinclude.m4: Use m4_include, not sinclude. + 2019-10-17 Tom Tromey <tromey@adacore.com> * configure: Rebuild. diff --git a/gdb/gdbserver/acinclude.m4 b/gdb/gdbserver/acinclude.m4 index 3887b16..880c03a 100644 --- a/gdb/gdbserver/acinclude.m4 +++ b/gdb/gdbserver/acinclude.m4 @@ -1,16 +1,16 @@ dnl gdb/gdbserver/configure.in uses BFD_HAVE_SYS_PROCFS_TYPE. -sinclude(../../bfd/bfd.m4) +m4_include(../../bfd/bfd.m4) -sinclude(../acx_configure_dir.m4) +m4_include(../acx_configure_dir.m4) # This gets AM_GDB_WARNINGS. -sinclude(../warning.m4) +m4_include(../warning.m4) dnl This gets autoconf bugfixes -sinclude(../../config/override.m4) +m4_include(../../config/override.m4) dnl For ACX_PKGVERSION and ACX_BUGURL. -sinclude(../../config/acx.m4) +m4_include(../../config/acx.m4) m4_include(../../config/depstand.m4) m4_include(../../config/lead-dot.m4) |