diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-14 03:41:42 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-14 03:41:42 +0000 |
commit | d58156a1af6c3aa1f9408c675ab20e7e26b9541b (patch) | |
tree | eca508a41169c5e651aa47711802fe06b3c4d0de /gcc/config.host | |
parent | ac8b093b92df7a4f661872c26b6a58f009735c02 (diff) | |
download | gcc-d58156a1af6c3aa1f9408c675ab20e7e26b9541b.tar.gz |
* Makefile.in, configure.in, config.host, mkheaders.in: Replace
uses of ${target_alias} for directory names (and other places which
won't like the empty string) with ${target_noncanonical}. Introduce
call early in configure.in to _GCC_TOPLEV_NONCANONICAL_TARGET so it's
available.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72457 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.host')
-rw-r--r-- | gcc/config.host | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config.host b/gcc/config.host index b9bba7442ff..fa6bced73db 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -84,7 +84,7 @@ case ${host} in host_exeext=.exe # This removes the cpu type and manufacturer components and # replaces "." with "_" in the operating system version. - target_alias=`echo $host | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` + target_noncanonical=`echo $host | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` prefix=/gnu local_prefix=/gnu ;; @@ -120,10 +120,10 @@ case ${host} in i[34567]86-pc-msdosdjgpp*) host_xm_file=i386/xm-djgpp.h host_exeext=.exe - # Shorten $target_alias for 8.3 filename conventions. + # Shorten $target_noncanonical for 8.3 filename conventions. case ${target} in *pc-msdosdjgpp*) - target_alias=djgpp + target_noncanonical=djgpp ;; esac ;; |