* configure.in: Check ${host} and ${target} rather than

${host_canon} and ${target_canon}.
	* configure: Likewise.
This commit is contained in:
Ian Lance Taylor 1994-09-07 16:53:27 +00:00
parent c9cbfd5efe
commit c8570de863
3 changed files with 10 additions and 4 deletions

View File

@ -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.

4
gas/configure vendored
View File

@ -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

View File

@ -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