From: Ian Lance Taylor Date: Wed, 7 Sep 1994 16:53:27 +0000 (+0000) Subject: * configure.in: Check ${host} and ${target} rather than X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8570de86328b6df47fd43e37aa156a1519c1585;p=binutils-gdb.git * configure.in: Check ${host} and ${target} rather than ${host_canon} and ${target_canon}. * configure: Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 92faf8909e8..cb5588c5112 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +Wed Sep 7 12:49:55 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + + * configure.in: Check ${host} and ${target} rather than + ${host_canon} and ${target_canon}. + * configure: Likewise. + Tue Sep 6 11:42:38 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) * config/tc-mips.c (mips_cpu): New static variable. diff --git a/gas/configure b/gas/configure index 56ccb535292..3619268c5c9 100755 --- a/gas/configure +++ b/gas/configure @@ -783,8 +783,8 @@ esac -case "x${host_canon}" in - x${target_canon}) ;; +case "x${host}" in + x${target}) ;; *) cat >> confdefs.h <<\EOF #define CROSS_COMPILE 1 EOF diff --git a/gas/configure.in b/gas/configure.in index acce3db9869..29094f83423 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -276,8 +276,8 @@ esac AC_SUBST(BFDLIB) AC_SUBST(ALL_OBJ_DEPS) -case "x${host_canon}" in - x${target_canon}) ;; +case "x${host}" in + x${target}) ;; *) AC_DEFINE(CROSS_COMPILE);; esac