diff options
author | Pedro Giffuni <pfg@apache.org> | 2012-01-26 13:54:53 +0000 |
---|---|---|
committer | Pedro Giffuni <pfg@apache.org> | 2012-01-26 13:54:53 +0000 |
commit | 94d82202ab49a3dd0da2f26eb8ca85005ff2e9da (patch) | |
tree | 0328e9848bffa7c1debd0ba74559260819550058 | |
parent | 4fae6c61575fb8a81a760da4556922867634f9fc (diff) |
Fix configure warning. Submitted by maho.
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index b11f9dc87960..9607c970c721 100644 --- a/configure.in +++ b/configure.in @@ -1289,7 +1289,7 @@ AC_MSG_CHECKING([whether to enable category B components]) # rhino (rhino) # beanshell (beanshell) # graphite (silgraphite) -if test "$enable_category_b" == "yes"; then +if test "$enable_category_b" = "yes"; then # enable_mozilla="yes" # enable_nss_module="yes" enable_hunspell="yes" |