From: Thomas Fitzsimmons Date: Wed, 1 May 2002 21:32:32 +0000 (+0000) Subject: * configure.in (noconfigdirs): Replace [ ] with test. X-Git-Tag: binutils-2_13-branchpoint~1136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a018e15b9d15eeb40da1d5ab7149a0370a024786;p=external%2Fbinutils.git * configure.in (noconfigdirs): Replace [ ] with test. --- diff --git a/ChangeLog b/ChangeLog index e5a4345..dd82348 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ -2002-03-19 Thomas Fitzsimmons +2002-05-01 Thomas Fitzsimmons + + * configure.in (noconfigdirs): Replace [ ] with test. * configure.in (noconfigdirs): Do not add target-newlib if target == i[3456]86-*-linux*, and host == target. diff --git a/configure.in b/configure.in index 45492a1..6c0e7d6 100644 --- a/configure.in +++ b/configure.in @@ -809,7 +809,7 @@ case "${target}" in i[3456]86-*-linux*) # This section makes it possible to build newlib natively on linux. # If we are using a cross compiler then don't configure newlib. - if [ x${is_cross_compiler} != xno ] ; then + if test x${is_cross_compiler} != xno ; then noconfigdirs="$noconfigdirs target-newlib" fi noconfigdirs="$noconfigdirs target-libgloss"