diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-07-12 20:20:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-07-12 20:20:32 +0000 |
commit | 63042524903cded67585ff044537ac7f3ed8deb7 (patch) | |
tree | cfb463c5dbf0d55d6413f62aaaab916d73371b0a /sim/common/aclocal.m4 | |
parent | 24a6c33d74943d1e8b5da4baee623b76828fd7a7 (diff) | |
download | gdb-63042524903cded67585ff044537ac7f3ed8deb7.zip gdb-63042524903cded67585ff044537ac7f3ed8deb7.tar.gz gdb-63042524903cded67585ff044537ac7f3ed8deb7.tar.bz2 |
sim: fix broken skel configure.ac example
Shell code before AC_INIT will be silently culled, and since the common
aclocal.m4 includes inline shell code, the file cannot be included before
AC_INIT. So update the example to show people including the file after
that rather than before to avoid random breakage.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/common/aclocal.m4')
-rw-r--r-- | sim/common/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/aclocal.m4 b/sim/common/aclocal.m4 index 817a8a4..5a34c21 100644 --- a/sim/common/aclocal.m4 +++ b/sim/common/aclocal.m4 @@ -8,9 +8,9 @@ # The simulator's configure.in should look like: # # dnl Process this file with autoconf to produce a configure script. -# sinclude(../common/aclocal.m4) # AC_PREREQ(2.5)dnl # AC_INIT(Makefile.in) +# sinclude(../common/aclocal.m4) # # SIM_AC_COMMON # |