OSDN Git Service

2006-05-14 Bernhard Fischer <aldot@gcc.gnu.org>
authoraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 14 May 2006 10:48:49 +0000 (10:48 +0000)
committeraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 14 May 2006 10:48:49 +0000 (10:48 +0000)
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

gcc/ChangeLog
gcc/mkconfig.sh

index 7a012fa..eff9113 100644 (file)
@@ -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
index 9ffd200..d47667d 100644 (file)
@@ -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