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/ppc/configure.ac | |
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/ppc/configure.ac')
-rw-r--r-- | sim/ppc/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac index e30f404..f74a22a 100644 --- a/sim/ppc/configure.ac +++ b/sim/ppc/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(Makefile.in) -sinclude(../common/acinclude.m4) +AC_CONFIG_MACRO_DIRS([../common ../.. ../../config]) AC_PROG_INSTALL AC_PROG_CC |