From 7dc0b2892fc4fd178590c8aec2e0de10c2e27b13 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 19 Mar 2002 15:30:18 +0000 Subject: [PATCH] * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/. From Aaron Ucko. --- ChangeLog | 5 +++++ tests/semantics.at | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 345a3e57..175ad65d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-03-19 Akim Demaille + + * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/. + From Aaron Ucko. + 2002-03-19 Akim Demaille * bin/autoscan.in (scan_file): Specify the location in `&used' diff --git a/tests/semantics.at b/tests/semantics.at index c98ea689..afed9425 100644 --- a/tests/semantics.at +++ b/tests/semantics.at @@ -2,7 +2,7 @@ AT_BANNER([Semantics.]) -# Copyright 2000, 2001 Free Software Foundation, Inc. +# Copyright 2000, 2001, 2002 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -357,7 +357,7 @@ _AT_CHECK_AC_MACRO( # or unknown (because the cross-compiling check is allowed to fail; # although it might be interesting to suppress this comparison, just # to know on which system it fails if it ever does). - if test $ac_endian != $ac_prevendian -a $ac_endian != unknow; then + if test $ac_endian != $ac_prevendian -a $ac_endian != unknown; then AC_MSG_ERROR([unexpected endianness: first run found '$ac_prevendian' but second run found '$ac_endian']) fi ])