diff options
author | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-17 12:56:37 +0000 |
---|---|---|
committer | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-17 12:56:37 +0000 |
commit | 8d687193bd95c5e96f31907ae4ade1685bd2b1c0 (patch) | |
tree | 26cced51f7df55ac24cc562abf0643e6254546b1 /configure | |
parent | 254d20923845d285f650920285cdc3e92d906071 (diff) | |
download | ppe42-gcc-8d687193bd95c5e96f31907ae4ade1685bd2b1c0.tar.gz ppe42-gcc-8d687193bd95c5e96f31907ae4ade1685bd2b1c0.zip |
* configure.in (bfin-*-*): Use test, not brackets, in if statement.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105500 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 9a30a396c4c..2131c6cb725 100755 --- a/configure +++ b/configure @@ -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 ;; |