From: Bernd Schmidt Date: Mon, 17 Oct 2005 12:54:34 +0000 (+0000) Subject: * configure.in (bfin-*-*): Use test, not brackets, in if statement. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2ffec1bbafdf9c3299f59fd782c671b97ce904b0;p=pf3gnuchains%2Fpf3gnuchains3x.git * configure.in (bfin-*-*): Use test, not brackets, in if statement. * configure: Regenerate. --- diff --git a/ChangeLog b/ChangeLog index 7a9002fe5f..b701909456 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 9a30a396c4..2131c6cb72 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 bbb7910de4..61c80404bd 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 ;;