diff options
author | gingold <gingold@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-14 10:00:52 +0000 |
---|---|---|
committer | gingold <gingold@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-14 10:00:52 +0000 |
commit | 26381b949b9d854aa705ff390737a793aeb8716b (patch) | |
tree | 0ea0085f1e4cd4c6ac9a2b8f42ed9e680cb70f96 /gcc/configure | |
parent | 132da8eaa9a3671bb8c0d301b9b2515f8cf67c9d (diff) | |
download | gcc-26381b949b9d854aa705ff390737a793aeb8716b.tar.gz |
2010-09-14 Tristan Gingold <gingold@adacore.com>
* configure.ac (plugins): Fix typos.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164273 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 6aa72edcb4e..7686c435441 100755 --- a/gcc/configure +++ b/gcc/configure @@ -25719,7 +25719,7 @@ case "${host}" in *-*-darwin*) if test x$build = x$host; then export_sym_check="nm${exeext} -g" - elif x$host = x$target; then + elif test x$host = x$target; then export_sym_check="$gcc_cv_nm -g" else export_sym_check= @@ -25728,7 +25728,7 @@ case "${host}" in *) if test x$build = x$host; then export_sym_check="objdump${exeext} -T" - elif x$host = x$target; then + elif test x$host = x$target; then export_sym_check="$gcc_cv_objdump -T" else export_sym_check= |