diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-09-07 16:53:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-09-07 16:53:27 +0000 |
commit | c8570de86328b6df47fd43e37aa156a1519c1585 (patch) | |
tree | 879eaab6e0ca0719d25176c04ab61ca69c9ea32d /gas/configure.in | |
parent | c9cbfd5efe22baf0f07250363307fe20975530d7 (diff) | |
download | gdb-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/configure.in')
-rw-r--r-- | gas/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |