From 2ffec1bbafdf9c3299f59fd782c671b97ce904b0 Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Mon, 17 Oct 2005 12:54:34 +0000 Subject: [PATCH] * configure.in (bfin-*-*): Use test, not brackets, in if statement. * configure: Regenerate. --- ChangeLog | 5 +++++ configure | 2 +- configure.in | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7a9002fe5..b70190945 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-17 Bernd Schmidt + + * configure.in (bfin-*-*): Use test, not brackets, in if statement. + * configure: Regenerate. + 2005-10-09 Kazu Hirata * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs diff --git a/configure b/configure index 9a30a396c..2131c6cb7 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 ;; diff --git a/configure.in b/configure.in index bbb7910de..61c80404b 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 ;; -- 2.11.4.GIT