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 /libstdc++-v3/configure.ac | |
parent | d7dd769ad00bd8fea2a8c8b92b8380e3197edd9f (diff) | |
download | gcc-5495d25075f098ef8a7ba76ec1236292d1f949e2.tar.gz |
* 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
Diffstat (limited to 'libstdc++-v3/configure.ac')
-rw-r--r-- | libstdc++-v3/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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 |