diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2005-10-17 12:54:34 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@codesourcery.com> | 2005-10-17 12:54:34 +0000 |
commit | 3cf3372e76433aa5abc71289aace7073293407fd (patch) | |
tree | a689f85783e0b0c649a106f3199d7bd1f0e8f6e0 /configure.in | |
parent | df2ce3e5f9e197b363dc4ac98e96fd2482ffa69c (diff) | |
download | gdb-3cf3372e76433aa5abc71289aace7073293407fd.zip gdb-3cf3372e76433aa5abc71289aace7073293407fd.tar.gz gdb-3cf3372e76433aa5abc71289aace7073293407fd.tar.bz2 |
* configure.in (bfin-*-*): Use test, not brackets, in if statement.
* configure: Regenerate.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index bbb7910..61c8040 100644 --- a/configure.in +++ b/configure.in @@ -502,7 +502,7 @@ case "${target}" in ;; bfin-*-*) noconfigdirs="$noconfigdirs target-libgloss gdb" - if [ x${is_cross_compiler} != xno ] ; then + if test x${is_cross_compiler} != xno ; then target_configdirs="${target_configdirs} target-bsp target-cygmon" fi ;; |