aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2005-03-13 05:37:48 +0000
committerJim Blandy <jimb@codesourcery.com>2005-03-13 05:37:48 +0000
commitca231fcc24d907f422ec6aff0529899543a58541 (patch)
treee5c873a69cef9622637d92e8aa64316a7fd5b4d5
parentf996f4135f11c2e027a56ce62c5446afba1e6bb5 (diff)
downloadfsf-binutils-gdb-ca231fcc24d907f422ec6aff0529899543a58541.zip
fsf-binutils-gdb-ca231fcc24d907f422ec6aff0529899543a58541.tar.gz
fsf-binutils-gdb-ca231fcc24d907f422ec6aff0529899543a58541.tar.bz2
* configure.ac: Use '=', not '=='; the latter is a GNU extension.
* configure: Regenerated.
-rw-r--r--gdb/ChangeLog5
-rwxr-xr-xgdb/configure2
-rw-r--r--gdb/configure.ac2
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e819ef5..9ef6f89 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-13 Jim Blandy <jimb@redhat.com>
+
+ * configure.ac: Use '=', not '=='; the latter is a GNU extension.
+ * configure: Regenerated.
+
2005-03-11 Michael Snyder <msnyder@redhat.com>
* mn10300-tdep.c (mn10300_dummy_unwind_dummy_id): Replace
diff --git a/gdb/configure b/gdb/configure
index d6a9e03..0f65478 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -19659,7 +19659,7 @@ build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
-Wunused-label -Wunused-function"
# GCC supports -Wuninitialized only with -O or -On, n != 0.
-if test x${CFLAGS+set} == xset; then
+if test x${CFLAGS+set} = xset; then
case "${CFLAGS}" in
*"-O0"* ) ;;
*"-O"* )
diff --git a/gdb/configure.ac b/gdb/configure.ac
index de30e6a..9bdaa75 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -1092,7 +1092,7 @@ build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
-Wunused-label -Wunused-function"
# GCC supports -Wuninitialized only with -O or -On, n != 0.
-if test x${CFLAGS+set} == xset; then
+if test x${CFLAGS+set} = xset; then
case "${CFLAGS}" in
*"-O0"* ) ;;
*"-O"* )