aboutsummaryrefslogtreecommitdiff
path: root/sim/README-HACKING
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-02-06 19:46:16 -0500
committerMike Frysinger <vapier@gentoo.org>2021-02-13 00:24:20 -0500
commit136da8cd9c32379b6f4b504e62a9d1bebb36587f (patch)
tree49f369d45f477616b01033a32802c7603cf66901 /sim/README-HACKING
parent652f80e07b267771ed0748966f042bdf3c379ac8 (diff)
downloadgdb-136da8cd9c32379b6f4b504e62a9d1bebb36587f.zip
gdb-136da8cd9c32379b6f4b504e62a9d1bebb36587f.tar.gz
gdb-136da8cd9c32379b6f4b504e62a9d1bebb36587f.tar.bz2
sim: switch to AC_CONFIG_MACRO_DIRS
Rather than hand maintain m4 includes in various autotool files, use AC_CONFIG_MACRO_DIRS to declare the relevant search paths. This simplifies the code, makes it more robust, and cleans out unused logic from configure.
Diffstat (limited to 'sim/README-HACKING')
-rw-r--r--sim/README-HACKING2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/README-HACKING b/sim/README-HACKING
index 2f985bd..0b72d96 100644
--- a/sim/README-HACKING
+++ b/sim/README-HACKING
@@ -38,8 +38,8 @@ The configure.ac of a simulator using the common framework should look like:
--- snip ---
dnl Process this file with autoconf to produce a configure script.
-sinclude(../common/aclocal.m4)
AC_INIT(Makefile.in)
+AC_CONFIG_MACRO_DIRS([../common ../.. ../../config])
SIM_AC_COMMON