diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-14 19:07:21 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-14 19:07:21 +0000 |
commit | 8ef79bec72c31dcd3508e355dcb1f5ba11a8f49b (patch) | |
tree | 6bc43345c5a9199f512bd56ff8385081f1556068 /gcc/config.gcc | |
parent | c8b04847f2994147a41922219d7947381e18d3d4 (diff) | |
download | gcc-8ef79bec72c31dcd3508e355dcb1f5ba11a8f49b.tar.gz |
gcc:
* config.gcc, config/m68hc11/t-m68hc11-gas: Replace uses of
target_alias with target_noncanonical.
ada:
* Make-lang.in: Replace uses of $(target_alias) with
$(target_noncanonical).
* ada/Makefile.in: Remove unused mention of $(target_alias).
cp:
* Make-lang.in: Replace uses of $(target_alias) with
$(target_noncanonical).
java:
* Make-lang.in: Replace uses of $(target_alias) with
$(target_noncanonical).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72487 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index b1662945667..52bbe9215d2 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2192,7 +2192,7 @@ if test x$with_cpu = x ; then with_cpu=i486 ;; i586-*-*) - case $target_alias in + case ${target_noncanonical} in k6_2-*) with_cpu=k6-2 ;; @@ -2211,7 +2211,7 @@ if test x$with_cpu = x ; then esac ;; i686-*-* | i786-*-*) - case $target_alias in + case ${target_noncanonical} in k8-*) with_cpu=k8 ;; |