From 3c1187e15038ba58ff1fcf48d4332788cb673d67 Mon Sep 17 00:00:00 2001 From: RoboSchmied Date: Tue, 2 Apr 2024 11:32:57 +0200 Subject: [PATCH] Fix typos in BUILD messages (#8199) --- CMakeLists.txt | 2 +- configure | 4 ++-- configure.ac | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e86ff13ecd..ef35b46f8c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -236,7 +236,7 @@ option( ENABLE_WEB_SERVER "Build web-server (default=ON)" ON ) # TEST_BIG_ENDIAN( BIG_ENDIAN ) if( NOT DEFINED BIG_ENDIAN ) - message( WARNING "unable to determine endianess, only LITTLE ENDIAN is supported" ) + message( WARNING "unable to determine endianness, only LITTLE ENDIAN is supported" ) elseif( BIG_ENDIAN ) message( FATAL_ERROR "bigendian is not supported" ) endif() diff --git a/configure b/configure index a5f64cee99..d5b483d7f1 100755 --- a/configure +++ b/configure @@ -4761,8 +4761,8 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h ;; #( *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unable to determine endianess, only little endian is supported" >&5 -$as_echo "$as_me: WARNING: unable to determine endianess, only little endian is supported" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unable to determine endianness, only little endian is supported" >&5 +$as_echo "$as_me: WARNING: unable to determine endianness, only little endian is supported" >&2;} ;; esac diff --git a/configure.ac b/configure.ac index 0c6e1e61a6..b547bea47b 100644 --- a/configure.ac +++ b/configure.ac @@ -490,7 +490,7 @@ CXXFLAG_CLEARS="-std=c++17" AC_C_BIGENDIAN( [AC_MSG_ERROR([[bigendian is not supported... stopping]])], , - [AC_MSG_WARN([[unable to determine endianess, only little endian is supported]])] + [AC_MSG_WARN([[unable to determine endianness, only little endian is supported]])] )