Commit 61efc800 by Bernd Schmidt Committed by Bernd Schmidt

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
parent e13602df
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
;;
......
......@@ -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
;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment