summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2020-11-11 11:07:49 -0500
committerZack Weinberg <zackw@panix.com>2020-11-11 11:07:49 -0500
commitdbd374cff01a32210450faeee20f7d368c85de54 (patch)
tree3d922c3b48a7a3dc6b0d2111de0593810fdc2939
parent1725c947144d9bebfe7817c2c5f0d53d884b1297 (diff)
downloadautoconf-dbd374cff01a32210450faeee20f7d368c85de54.tar.gz
tests/compile.at (AC_RUN_IFELSE): typo fix
-rw-r--r--tests/compile.at2
1 files changed, 1 insertions, 1 deletions
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; }],