From: Zack Weinberg Date: Wed, 11 Nov 2020 16:07:49 +0000 (-0500) Subject: tests/compile.at (AC_RUN_IFELSE): typo fix X-Git-Tag: v2.69e~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbd374cff01a32210450faeee20f7d368c85de54;p=thirdparty%2Fautoconf.git tests/compile.at (AC_RUN_IFELSE): typo fix --- diff --git a/tests/compile.at b/tests/compile.at index c93722b9..92faed8b 100644 --- a/tests/compile.at +++ b/tests/compile.at @@ -332,7 +332,7 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([], [return 2])], [AC_MSG_ERROR([saw `return 2' as a success])], [estatus=$? test $estatus != 2 && - AC_MSG_ERROR([did not get as 2 exit status: $estatus])]) + AC_MSG_ERROR([did not get 2 as exit status: $estatus])]) # The old stinky one. AC_TRY_RUN([int main (void) { return 3; }],