diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2021-04-21 11:59:24 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2021-04-21 15:42:36 +0200 |
commit | 8b11dfcaec411015ead4a400de6e682db3898477 (patch) | |
tree | 179e8221a9be9c7913e22cd4a0760e9dadfe62cc | |
parent | build: properly split CFLAGS from AC_CFLAGS (diff) | |
download | frr-8b11dfcaec411015ead4a400de6e682db3898477.tar.xz frr-8b11dfcaec411015ead4a400de6e682db3898477.zip |
build: use AC_CONFIG_AUX_DIR
aka the "put shit into a subdirectory" option
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
-rwxr-xr-x | configure.ac | 1 | ||||
-rw-r--r-- | m4/.gitignore | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1016c7f99..390f222bb 100755 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,7 @@ AC_SUBST([CONFIG_ARGS]) AC_CONFIG_SRCDIR([lib/zebra.h]) AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_AUX_DIR([m4/ac]) dnl ----------------------------------- dnl Get hostname and other information. diff --git a/m4/.gitignore b/m4/.gitignore index cc778b9e9..d44410110 100644 --- a/m4/.gitignore +++ b/m4/.gitignore @@ -8,3 +8,5 @@ !ax_sys_weak_alias.m4 !ax_sys_weak_alias.m4 !pkg.m4 + +/ac |