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/testsuite/aclocal.m4 | |
parent | de6d8dc25cf728dbb748eeeb8d35642332cc309b (diff) | |
download | binutils-4d0b984b970b9526d267ada259b62ec2c42cfb24.zip binutils-4d0b984b970b9526d267ada259b62ec2c42cfb24.tar.gz binutils-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/testsuite/aclocal.m4')
-rw-r--r-- | gdb/testsuite/aclocal.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/aclocal.m4 b/gdb/testsuite/aclocal.m4 index d40c3a9..5061eef 100644 --- a/gdb/testsuite/aclocal.m4 +++ b/gdb/testsuite/aclocal.m4 @@ -1,6 +1,6 @@ -sinclude(../../config/acx.m4) -sinclude(../../config/override.m4) -sinclude(../transform.m4) +m4_include(../../config/acx.m4) +m4_include(../../config/override.m4) +m4_include(../transform.m4) # AM_CONDITIONAL -*- Autoconf -*- |