]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
tests/compile.at (AC_RUN_IFELSE): typo fix
authorZack Weinberg <zackw@panix.com>
Wed, 11 Nov 2020 16:07:49 +0000 (11:07 -0500)
committerZack Weinberg <zackw@panix.com>
Wed, 11 Nov 2020 16:07:49 +0000 (11:07 -0500)
tests/compile.at

index c93722b93798397fb81b92ad61102ec75e015e74..92faed8b93d5b57166dd455a56ed751d52dc4f5f 100644 (file)
@@ -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; }],