autogen: Add a comment explaining the mkdir

This commit is contained in:
Richard Hansen 2024-12-19 04:41:36 -05:00
parent d3e793bf21
commit 8aedcf47db

View file

@ -7,6 +7,7 @@ fatal() { error "$@"; exit 1; }
try() { "$@" || fatal "'$@' failed"; }
try cd "${0%/*}"
# aclocal complains if a directory passed to AC_CONFIG_MACRO_DIR doesn't exist.
try mkdir -p build-aux/m4
try autoreconf -fviW all