aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-09-07 16:53:27 +0000
committerIan Lance Taylor <ian@airs.com>1994-09-07 16:53:27 +0000
commitc8570de86328b6df47fd43e37aa156a1519c1585 (patch)
tree879eaab6e0ca0719d25176c04ab61ca69c9ea32d /gas
parentc9cbfd5efe22baf0f07250363307fe20975530d7 (diff)
downloadgdb-c8570de86328b6df47fd43e37aa156a1519c1585.zip
gdb-c8570de86328b6df47fd43e37aa156a1519c1585.tar.gz
gdb-c8570de86328b6df47fd43e37aa156a1519c1585.tar.bz2
* configure.in: Check ${host} and ${target} rather than
${host_canon} and ${target_canon}. * configure: Likewise.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog6
-rwxr-xr-xgas/configure4
-rw-r--r--gas/configure.in4
3 files changed, 10 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 92faf89..cb5588c 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 56ccb53..3619268 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 acce3db..29094f8 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