From: ticktock35 Date: Mon, 15 Dec 2008 05:02:48 +0000 (+0000) Subject: opkg: fix configure check for big-endian systems X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=94307a5ef1bd16228acaf46d7ea92f909de8914d;ds=sidebyside opkg: fix configure check for big-endian systems git-svn-id: http://opkg.googlecode.com/svn/trunk@60 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/configure.ac b/configure.ac index d6818b5..51c17bb 100644 --- a/configure.ac +++ b/configure.ac @@ -94,7 +94,7 @@ AC_TYPE_SIZE_T AC_CHECK_MEMBERS([struct stat.st_rdev]) # Checks endianness -AC_C_BIGENDIAN(ENDIAN_CFLAGS="-DWORDS_BIGENDIAN=1",) +AC_C_BIGENDIAN(BIGENDIAN_CFLAGS="-DWORDS_BIGENDIAN=1",) AC_SUBST(BIGENDIAN_CFLAGS) # Don't do annoying tests that don't work when cross-compiling, just trust them.