summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>2006-05-14 10:48:49 +0000
committeraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>2006-05-14 10:48:49 +0000
commit6cd86b1d5f0834fa32b022d026688623bafe6e59 (patch)
tree05f6073d6884d87d5e95069846e24206eb953d15
parent9c7246bd29ea84914b0895ecf9cba8e466da02de (diff)
downloadgcc-6cd86b1d5f0834fa32b022d026688623bafe6e59.tar.gz
2006-05-14 Bernhard Fischer <aldot@gcc.gnu.org>
PR 27501 * mkconfig.sh: Use operator = instead of == for test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113758 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/mkconfig.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7a012fabe75..eff9113d34e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2006-05-14 Bernhard Fischer <aldot@gcc.gnu.org>
+
+ PR 27501
+ * mkconfig.sh: Use operator = instead of == for test.
+
2006-05-13 Nick Clifton <nickc@redhat.com>
* dwarf2out.c (dbx_reg_number): Check return value from
diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
index 9ffd200b9cf..d47667d8c5e 100644
--- a/gcc/mkconfig.sh
+++ b/gcc/mkconfig.sh
@@ -43,7 +43,7 @@ echo "#define ${header_guard}" >> ${output}T
# A special test to ensure that build-time files don't blindly use
# config.h.
-if test x"$output" == x"config.h"; then
+if test x"$output" = x"config.h"; then
echo "#ifdef GENERATOR_FILE" >> ${output}T
echo "#error config.h is for the host, not build, machine." >> ${output}T
echo "#endif" >> ${output}T