From 04bbfbe56f3cc508ae54ffbb76d29affa70e4b09 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 24 May 2026 16:40:20 +0300 Subject: [PATCH] Fix build-aux files not being generated under 'mps' subdirectory * autogen.sh (do_autoconf): Copy build-aux files to the 'mps' subdirectory as well, to keep them in sync with Gnulib. --- autogen.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/autogen.sh b/autogen.sh index 5e8de9e6a89..82e9db6333c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -284,6 +284,7 @@ Please report any problems with this script to bug-gnu-emacs@gnu.org .' # Restore config.guess etc. in build-aux, and copy them to exec. for file in config.guess config.sub install-sh; do cp build-aux/$file.tmp exec/$file && + cp build-aux/$file.tmp mps/tool/autoconf/build-aux/$file && mv build-aux/$file.tmp build-aux/$file || exit done fi