diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-10-18 00:31:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-10-18 00:31:00 +0000 |
commit | 9c082ca86eb4262078f359850ae4466856f156a1 (patch) | |
tree | 51ce30ef5e761557106790125d91a26d78eb6352 /sim/h8300 | |
parent | f7c5b166f66958163526aa5688d8a7e3d0686694 (diff) | |
download | ppe42-binutils-9c082ca86eb4262078f359850ae4466856f156a1.tar.gz ppe42-binutils-9c082ca86eb4262078f359850ae4466856f156a1.zip |
sim: rename common/aclocal.m4 to common/acinclude.m4
Automake likes to dump macros automatically used into the aclocal.m4
file, but the common/aclocal.m4 naming prevents that. So rename it
to the more normal "acinclude.m4" so the aclocal tool can work.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/h8300')
-rw-r--r-- | sim/h8300/ChangeLog | 4 | ||||
-rw-r--r-- | sim/h8300/configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index 386fce5f06..f7e49595a7 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,5 +1,9 @@ 2011-10-17 Mike Frysinger <vapier@gentoo.org> + * configure.ac: Change include to common/acinclude.m4. + +2011-10-17 Mike Frysinger <vapier@gentoo.org> + * configure.ac: Change AC_PREREQ to 2.64. Delete AC_CONFIG_HEADER call. Replace common.m4 include with SIM_AC_COMMON. * configure: Regenerate. diff --git a/sim/h8300/configure.ac b/sim/h8300/configure.ac index 1e6a7db632..bc077bb3d3 100644 --- a/sim/h8300/configure.ac +++ b/sim/h8300/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.64)dnl AC_INIT(Makefile.in) -sinclude(../common/aclocal.m4) +sinclude(../common/acinclude.m4) SIM_AC_COMMON |