>From 1cf028128115fe037cda57035fef70b66d6857ab Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 16 Sep 2022 19:03:47 +0200 Subject: [PATCH] Fix a test failure of autopoint-3. Reported by Marvin Schmidt in . * gettext-tools/tests/autopoint-3: Comment out the AC_CONFIG_HEADERS line and don't invoke autoheader. --- gettext-tools/tests/autopoint-3 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gettext-tools/tests/autopoint-3 b/gettext-tools/tests/autopoint-3 index 8867842aa..bd3fbf335 100755 --- a/gettext-tools/tests/autopoint-3 +++ b/gettext-tools/tests/autopoint-3 @@ -60,7 +60,7 @@ AC_PROG_CC AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([$ARCHIVE_VERSION]) -AC_CONFIG_HEADERS([config.h]) +dnl AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([po/Makefile.in]) AC_OUTPUT @@ -110,9 +110,11 @@ echo hello.c > po/POTFILES.in ${ACLOCAL} -I m4 >/dev/null 2>autopoint.err test $? = 0 || { cat autopoint.err; Exit 1; } -: ${AUTOHEADER=autoheader} -${AUTOHEADER} >/dev/null 2>autopoint.err -test $? = 0 || { cat autopoint.err; Exit 1; } +if false; then + : ${AUTOHEADER=autoheader} + ${AUTOHEADER} >/dev/null 2>autopoint.err + test $? = 0 || { cat autopoint.err; Exit 1; } +fi ${AUTOCONF} >/dev/null 2>autopoint.err test $? = 0 || { cat autopoint.err; Exit 1; } -- 2.34.1