diff options
| author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-28 00:24:52 +0000 |
|---|---|---|
| committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-28 00:24:52 +0000 |
| commit | 5495d25075f098ef8a7ba76ec1236292d1f949e2 (patch) | |
| tree | cb550f0f0036cb0d8810dd8c3100a39d6f7fe9bc | |
| parent | d7dd769ad00bd8fea2a8c8b92b8380e3197edd9f (diff) | |
| download | ppe42-gcc-5495d25075f098ef8a7ba76ec1236292d1f949e2.tar.gz ppe42-gcc-5495d25075f098ef8a7ba76ec1236292d1f949e2.zip | |
* configure.ac: Test $with_cross_host against $build_alias, not $build.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70875 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
| -rwxr-xr-x | libstdc++-v3/configure | 2 | ||||
| -rw-r--r-- | libstdc++-v3/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d490c7bdf74..0c8820a0e72 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-08-28 Alan Modra <amodra@bigpond.net.au> + + * configure.ac: Test $with_cross_host against $build_alias, not $build. + * configure: Regenerate. + 2003-08-27 Petur Runolfsson <peturr02@ru.is> * testsuite/27_io/objects/wchar_t/10.cc: Move wcout stuff... diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 69152778649..bd222ff37f5 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -27308,7 +27308,7 @@ else # If Canadian cross, then don't pick up tools from the build directory. # Used only in GLIBCXX_EXPORT_INCLUDES. if test -n "$with_cross_host" && - test x"$build" != x"$with_cross_host" && + test x"$build_alias" != x"$with_cross_host" && test x"$build" != x"$target"; then CANADIAN=yes diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac index 8c4c16afdff..9a612cf8d14 100644 --- a/libstdc++-v3/configure.ac +++ b/libstdc++-v3/configure.ac @@ -165,7 +165,7 @@ else # If Canadian cross, then don't pick up tools from the build directory. # Used only in GLIBCXX_EXPORT_INCLUDES. if test -n "$with_cross_host" && - test x"$build" != x"$with_cross_host" && + test x"$build_alias" != x"$with_cross_host" && test x"$build" != x"$target"; then CANADIAN=yes |

