re PR bootstrap/27501 (Shell compatibility problem)

2006-05-14  Bernhard Fischer  <aldot@gcc.gnu.org>

	PR 27501
	* mkconfig.sh: Use operator = instead of == for test.

From-SVN: r113758
This commit is contained in:
Bernhard Fischer 2006-05-14 12:48:49 +02:00 committed by Bernhard Reutner-Fischer
parent fc92a2d4e6
commit f9a4b91e4b
2 changed files with 6 additions and 1 deletions

View 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

View 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