Move m4 to build-aux/m4 to reduce clutter

This commit is contained in:
Richard Hansen 2024-12-19 04:21:17 -05:00
parent b200e0c4e3
commit d3e793bf21
7 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I build-aux/m4
EXTRA_DIST = \ EXTRA_DIST = \
CONTRIBUTING.md \ CONTRIBUTING.md \
COPYING \ COPYING \

View file

@ -7,7 +7,7 @@ fatal() { error "$@"; exit 1; }
try() { "$@" || fatal "'$@' failed"; } try() { "$@" || fatal "'$@' failed"; }
try cd "${0%/*}" try cd "${0%/*}"
try mkdir -p m4 build-aux try mkdir -p build-aux/m4
try autoreconf -fviW all try autoreconf -fviW all
# Ignore changes to build-aux/tap-driver, but only if we're in a clone # Ignore changes to build-aux/tap-driver, but only if we're in a clone

View file

@ -11,7 +11,7 @@ AC_INIT([ddclient], m4_dquote(m4_esyscmd([printf '[%s]' "$(./ddclient.in --versi
AC_SUBST([CONFIGURE_DEPENDENCIES], ['$(top_srcdir)/ddclient.in']) AC_SUBST([CONFIGURE_DEPENDENCIES], ['$(top_srcdir)/ddclient.in'])
AC_CONFIG_SRCDIR([ddclient.in]) AC_CONFIG_SRCDIR([ddclient.in])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([build-aux/m4])
AC_REQUIRE_AUX_FILE([tap-driver.sh]) AC_REQUIRE_AUX_FILE([tap-driver.sh])
# If the automake dependency is bumped to v1.12 or newer, remove # If the automake dependency is bumped to v1.12 or newer, remove
# build-aux/tap-driver.sh from the repository. Automake 1.12+ comes # build-aux/tap-driver.sh from the repository. Automake 1.12+ comes