From 8f623060119ea90ce418e469c051b0ee0bd950a1 Mon Sep 17 00:00:00 2001 From: KO Myung-Hun Date: Mon, 3 Aug 2026 20:11:30 +0900 Subject: [PATCH] Makefile.in: fix autogen.sh --recheck on out-of-tree build Makefile could not find autogen.sh. Signed-off-by: KO Myung-Hun --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 1ad8b25fc..a269a57f0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -536,7 +536,7 @@ dist: $(MAKE) editor_builtin $(MAKE) editors $(MANPAGES) $(MAKE) distclean - $(SHELL) autogen.sh --clearenv + cd "$(top_srcdir)" && $(SHELL) autogen.sh --clearenv tar: dist tar -cv --exclude CVS --exclude .git -C .. -f - `basename \`pwd\`` | \ @@ -579,7 +579,7 @@ update-travis travis-update golden: # Rules to run autogen if necessary # configure: configure.ac autoconf/aclocal.m4 - sh autogen.sh --recheck + cd "$(top_srcdir)" && sh autogen.sh --recheck config.status: configure @if [ ! -f config.status ]; then \