From: Bruno Haible Date: Tue, 16 Jul 2024 19:30:07 +0000 (+0200) Subject: autopoint-3: Don't require GNU make. X-Git-Tag: v0.23~246 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=364f058231667fc292c5d3bb0776ea6471331af8;p=thirdparty%2Fgettext.git autopoint-3: Don't require GNU make. * gettext-tools/tests/autopoint-3: Don't invoke "$MAKE --version". Instead, just assume that $MAKE works. --- diff --git a/gettext-tools/tests/autopoint-3 b/gettext-tools/tests/autopoint-3 index 1cedce2d1..269a4f95c 100755 --- a/gettext-tools/tests/autopoint-3 +++ b/gettext-tools/tests/autopoint-3 @@ -42,10 +42,6 @@ ${AUTOMAKE} --add-missing >/dev/null 2>/dev/null \ rm -f configure.ac Makefile.am -: ${MAKE=make} -${MAKE} --version >/dev/null 2>/dev/null \ - || { echo "Skipping test: make not found"; Exit 77; } - gettext_datadir=$top_builddir/misc export gettext_datadir @@ -145,6 +141,7 @@ test $? = 0 || { cat autopoint.err; Exit 1; } ${CONFIG_SHELL} ./configure >/dev/null 2>autopoint.err test $? = 0 || { cat autopoint.err; Exit 1; } +: ${MAKE=make} ${MAKE} >/dev/null 2>autopoint.err test $? = 0 || { cat autopoint.err; Exit 1; }