diff options
author | Bernd Schmidt <bernd.schmidt@analog.com> | 2005-10-17 12:56:37 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2005-10-17 12:56:37 +0000 |
commit | 61efc800192945b33cdb2bba51efbdfd133d84d4 (patch) | |
tree | 26cced51f7df55ac24cc562abf0643e6254546b1 | |
parent | e13602df833087e6f47f6a836eda700d2d1ebb20 (diff) | |
download | gcc-61efc800192945b33cdb2bba51efbdfd133d84d4.zip gcc-61efc800192945b33cdb2bba51efbdfd133d84d4.tar.gz gcc-61efc800192945b33cdb2bba51efbdfd133d84d4.tar.bz2 |
configure.in (bfin-*-*): Use test, not brackets, in if statement.
* configure.in (bfin-*-*): Use test, not brackets, in if statement.
* configure: Regenerate.
From-SVN: r105500
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com> + + * configure.in (bfin-*-*): Use test, not brackets, in if statement. + * configure: Regenerate. + 2005-10-15 Jie Zhang <jie.zhang@analog.com> * MAINTAINERS (Write After Approval): Add self. @@ -1294,7 +1294,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 ;; 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 ;; |