configure.host: Set try_cpu to target_cpu for existing baseline files.
2003-06-20 Matthias Klose <doko@debian.org> * configure.host: Set try_cpu to target_cpu for existing baseline files. From-SVN: r68254
This commit is contained in:
parent
4bc730184b
commit
bbdfb3e821
@ -1,3 +1,8 @@
|
|||||||
|
2003-06-20 Matthias Klose <doko@debian.org>
|
||||||
|
|
||||||
|
* configure.host: Set try_cpu to target_cpu for existing
|
||||||
|
baseline files.
|
||||||
|
|
||||||
2003-06-19 Andreas Jaeger <aj@suse.de>
|
2003-06-19 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* testsuite/Makefile.am (extract_symvers): Revert accidental
|
* testsuite/Makefile.am (extract_symvers): Revert accidental
|
||||||
|
@ -58,9 +58,6 @@ c_compatibility=no
|
|||||||
# Set any CPU-dependent bits.
|
# Set any CPU-dependent bits.
|
||||||
# Here we override defaults and catch more general cases due to naming
|
# Here we override defaults and catch more general cases due to naming
|
||||||
# conventions (e.g., chip_name* to catch all variants).
|
# conventions (e.g., chip_name* to catch all variants).
|
||||||
if test -d ${glibcpp_srcdir}/config/cpu/${host_cpu}; then
|
|
||||||
try_cpu=${host_cpu}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
||||||
case "${host_cpu}" in
|
case "${host_cpu}" in
|
||||||
@ -93,7 +90,11 @@ case "${host_cpu}" in
|
|||||||
try_cpu=sparc
|
try_cpu=sparc
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
try_cpu=generic
|
if test -d ${glibcpp_srcdir}/config/cpu/${host_cpu}; then
|
||||||
|
try_cpu=${host_cpu}
|
||||||
|
else
|
||||||
|
try_cpu=generic
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user