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 | |
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')
-rwxr-xr-x | gas/configure | 4 |
1 files changed, 2 insertions, 2 deletions
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 |