aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Schmidt <bernd.schmidt@analog.com>2005-10-17 12:56:37 +0000
committerBernd Schmidt <bernd.schmidt@analog.com>2005-10-17 12:56:37 +0000
commit579fc5537991f6cc14cdeff4af67b9cfc624d6b7 (patch)
tree26cced51f7df55ac24cc562abf0643e6254546b1
parent04305a56a3f87956fbae4811c372d5da3f563838 (diff)
* configure.in (bfin-*-*): Use test, not brackets, in if statement.
* configure: Regenerate. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@105500 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eff3e117fbe..d19c3c04fa4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
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
;;
diff --git a/configure.in b/configure.in
index bbb7910de41..61c80404bdc 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
;;