diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-02-06 19:46:16 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-13 00:24:20 -0500 |
commit | 136da8cd9c32379b6f4b504e62a9d1bebb36587f (patch) | |
tree | 49f369d45f477616b01033a32802c7603cf66901 /sim/README-HACKING | |
parent | 652f80e07b267771ed0748966f042bdf3c379ac8 (diff) | |
download | gdb-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-HACKING | 2 |
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 |