diff options
author | Mark Elbrecht <snowball3@bigfoot.com> | 2000-08-04 16:17:37 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-08-04 10:17:37 -0600 |
commit | 326c5cd1b3b31f624d4ab7701bf2c0d6516b4ce0 (patch) | |
tree | eaae2df39afd7d5a1fa0473574cdb41222e0487a /config/mh-djgpp | |
parent | b8458e3e8b0db246af9f1a7c3fe65d8cf88413b3 (diff) | |
download | gcc-326c5cd1b3b31f624d4ab7701bf2c0d6516b4ce0.zip gcc-326c5cd1b3b31f624d4ab7701bf2c0d6516b4ce0.tar.gz gcc-326c5cd1b3b31f624d4ab7701bf2c0d6516b4ce0.tar.bz2 |
mh-djgpp: Conditionally set 'target_alias' to djgpp.
* mh-djgpp: Conditionally set 'target_alias' to djgpp. Conditionally
modify 'gcc_version'.
From-SVN: r35483
Diffstat (limited to 'config/mh-djgpp')
-rw-r--r-- | config/mh-djgpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/mh-djgpp b/config/mh-djgpp index f12007b..b626bc9 100644 --- a/config/mh-djgpp +++ b/config/mh-djgpp @@ -2,3 +2,18 @@ # this requires that we set CFLAGS. # This used to set -fno-omit-frame-pointer. CFLAGS=-O2 + +# Shorten the target alias so when it is used to set 'libsubdir' +# the name will work in both short and long filename environments. +ifeq ($(findstring -pc-msdosdjgpp,$(target_alias)),-pc-msdosdjgpp) +target_alias=djgpp +endif + +# The version string must be modified to contain just one dot +# because DOS filenames can only have one dot when long filenames +# are not available. +__version:=$(gcc_version) +__version:=$(subst ., ,$(__version)) +ifeq ($(words $(__version)),3) +gcc_version=$(word 1,$(__version)).$(word 2,$(__version))$(word 3,$(__version)) +endif |