diff options
author | Bernhard Fischer <aldot@gcc.gnu.org> | 2006-05-14 12:48:49 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2006-05-14 12:48:49 +0200 |
commit | f9a4b91e4ba0e555780e391f3430d8a0c2c1e963 (patch) | |
tree | 05f6073d6884d87d5e95069846e24206eb953d15 /gcc | |
parent | fc92a2d4e68568dcebc9c4b7c272ad0ac4236ea6 (diff) | |
download | gcc-f9a4b91e4ba0e555780e391f3430d8a0c2c1e963.zip gcc-f9a4b91e4ba0e555780e391f3430d8a0c2c1e963.tar.gz gcc-f9a4b91e4ba0e555780e391f3430d8a0c2c1e963.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/mkconfig.sh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a012fa..eff9113 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 9ffd200..d47667d 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 |