This is an automated email from Gerrit. Anonymous Coward (rdiezmail-open...@yahoo.de) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/6236
-- gerrit commit 182035f647ed27a8a0dcceca76bac75778338b4b Author: R. Diez <rdiezmail-open...@yahoo.de> Date: Thu May 13 13:43:09 2021 +0200 Reduce Autoconf clutter at top-level Signed-off-by: R. Diez <rdiezmail-open...@yahoo.de> Change-Id: Ied87faba495d9eeb8f98e78c2e2b7e7e596febfb diff --git a/.gitignore b/.gitignore index f1021b2..e25d1ba 100644 --- a/.gitignore +++ b/.gitignore @@ -53,27 +53,23 @@ doc/openocd.toc doc/openocd.tp doc/openocd.vr doc/version.texi -texinfo.tex src/openocd src/openocd.exe # configure/autotools output +/build-aux/ aclocal.m4 autom4te.cache -compile -config.* +config.h +config.log +config.status configure -depcomp doxygen doxygen.log Doxyfile -install-sh libtool -ltmain.sh Makefile !contrib/loaders/**/Makefile -mdate-sh -missing stamp-h1 stamp-vti INSTALL diff --git a/configure.ac b/configure.ac index e343875..dcf4ebb 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.69]) AC_INIT([openocd], [0.11.0+dev], [OpenOCD Mailing List <openocd-devel@lists.sourceforge.net>]) AC_CONFIG_SRCDIR([src/openocd.c]) -AC_CONFIG_AUX_DIR([.]) +AC_CONFIG_AUX_DIR([build-aux]) m4_include([config_subdir.m4])dnl --