mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:41:18 +08:00
Fix config.gcc shell script lossage
From-SVN: r136596
This commit is contained in:
parent
d3c1d2a06e
commit
0e462a951b
@ -1,3 +1,9 @@
|
||||
2008-06-09 Michael Meissner <michael.meissner@amd.com>
|
||||
|
||||
* config.gcc (i[34567]86-*-*): Put test in quotes to prevent
|
||||
failure on some Bourne shells.
|
||||
(x86_64-*-*): Ditto.
|
||||
|
||||
2008-06-09 Kai Tietz <kai.tietz@onevision.com>
|
||||
|
||||
* config/i386/cygming.h (TARGET_SUBTARGET64_DEFAULT): New.
|
||||
|
@ -360,13 +360,13 @@ fi
|
||||
|
||||
case ${target} in
|
||||
i[34567]86-*-*)
|
||||
if test $enable_cld = yes; then
|
||||
if test "x$enable_cld" = xyes; then
|
||||
tm_defines="${tm_defines} USE_IX86_CLD=1"
|
||||
fi
|
||||
;;
|
||||
x86_64-*-*)
|
||||
tm_file="i386/biarch64.h ${tm_file}"
|
||||
if test $enable_cld = yes; then
|
||||
if test "x$enable_cld" = xyes; then
|
||||
tm_defines="${tm_defines} USE_IX86_CLD=1"
|
||||
fi
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user