diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-09 23:51:02 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-09 23:51:02 +0000 |
commit | cff69eaddf1d27e700746398c50583e9d5f81df0 (patch) | |
tree | 6d697f289ffd93867dd19a23960d1c324b9dfa82 /libstdc++-v3 | |
parent | 007548ed17f735a2d4bd8521f930fb6190460200 (diff) | |
download | gcc-cff69eaddf1d27e700746398c50583e9d5f81df0.tar.gz |
2004-02-09 Paul Brook <paul@codesourcery.com>
* libstdc++-v3/configure.host: Explicitly check for atomicity.h file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77570 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/configure.host | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b519c948a26..16b0f5fa4bd 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2004-02-09 Paul Brook <paul@codesourcery.com> + + * libstdc++-v3/configure.host: Explicitly check for atomicity.h file. + 2004-02-09 Paolo Carlini <pcarlini@suse.de> PR libstdc++/14071 diff --git a/libstdc++-v3/configure.host b/libstdc++-v3/configure.host index 4a8062a1f31..a3d32325db2 100644 --- a/libstdc++-v3/configure.host +++ b/libstdc++-v3/configure.host @@ -94,7 +94,7 @@ case "${host_cpu}" in try_cpu=sparc ;; *) - if test -d ${glibcxx_srcdir}/config/cpu/${host_cpu}; then + if test -f ${glibcxx_srcdir}/config/cpu/${host_cpu}/atomicity.h; then try_cpu=${host_cpu} else try_cpu=generic |