* configure.in: Check ${host} and ${target} rather than
authorIan Lance Taylor <ian@airs.com>
Wed, 7 Sep 1994 16:53:27 +0000 (16:53 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 7 Sep 1994 16:53:27 +0000 (16:53 +0000)
${host_canon} and ${target_canon}.
* configure: Likewise.

gas/ChangeLog
gas/configure
gas/configure.in

index 92faf89..cb5588c 100644 (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.
index 56ccb53..3619268 100755 (executable)
@@ -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
index acce3db..29094f8 100644 (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