diff options
author | Tristan Gingold <gingold@adacore.com> | 2010-09-14 10:00:52 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@gcc.gnu.org> | 2010-09-14 10:00:52 +0000 |
commit | 515871c739c287a65e8d38326aad84e7b832a855 (patch) | |
tree | 0ea0085f1e4cd4c6ac9a2b8f42ed9e680cb70f96 /gcc/configure.ac | |
parent | 4a6e5cc885d6592194ff7e0c884d0bb802251c73 (diff) | |
download | gcc-515871c739c287a65e8d38326aad84e7b832a855.zip gcc-515871c739c287a65e8d38326aad84e7b832a855.tar.gz gcc-515871c739c287a65e8d38326aad84e7b832a855.tar.bz2 |
configure.ac (plugins): Fix typos.
2010-09-14 Tristan Gingold <gingold@adacore.com>
* configure.ac (plugins): Fix typos.
* configure: Regenerate.
From-SVN: r164273
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index e02dac9..278cc4f 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -4644,7 +4644,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= @@ -4653,7 +4653,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= |