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:
parent
fc92a2d4e6
commit
f9a4b91e4b
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user