diff options
author | aldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-14 10:48:49 +0000 |
---|---|---|
committer | aldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-14 10:48:49 +0000 |
commit | 6cd86b1d5f0834fa32b022d026688623bafe6e59 (patch) | |
tree | 05f6073d6884d87d5e95069846e24206eb953d15 /gcc/mkconfig.sh | |
parent | 9c7246bd29ea84914b0895ecf9cba8e466da02de (diff) | |
download | gcc-6cd86b1d5f0834fa32b022d026688623bafe6e59.tar.gz |
2006-05-14 Bernhard Fischer <aldot@gcc.gnu.org>
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
Diffstat (limited to 'gcc/mkconfig.sh')
-rw-r--r-- | gcc/mkconfig.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh index 9ffd200b9cf..d47667d8c5e 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 |