Commit f9a4b91e by Bernhard Fischer Committed by Bernhard Reutner-Fischer

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
parent fc92a2d4
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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment