don't call config.guess ourselves, let autoconf do it. (This way, the
authorkramm <kramm>
Thu, 13 Dec 2001 10:09:38 +0000 (10:09 +0000)
committerkramm <kramm>
Thu, 13 Dec 2001 10:09:38 +0000 (10:09 +0000)
user can supply options to configure when cross compiling)

aclocal.m4

index 9869169..66a1b30 100644 (file)
@@ -12,11 +12,9 @@ export CROSSCOMPILE
 
 if test "x${CROSSCOMPILE}" = "x1"; then
  AC_MSG_RESULT(we are cross compiling- trying to guess from system type)
- AC_MSG_CHECKING(for system type)
- systemguess=`./config.guess`
- AC_MSG_RESULT(${systemguess})
+ AC_CANONICAL_SYSTEM
  AC_MSG_CHECKING([for byte order, try 2])
- case "${systemguess}" in
+ case "${target}" in
   *86* | *-pc-* )
      LITTLEENDIAN=1
      ;;