diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-06-19 21:22:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-06-19 21:22:44 +0800 |
commit | 0f5b97d114f6febf190e2403e53efd85667ff468 (patch) | |
tree | 3a29c515da97533fa330ba85be0c43fd9405ab25 | |
parent | c6573cb04bdc216e7e5ea3657cb1186eaf0f1095 (diff) | |
download | gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.tar gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.tar.gz gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.tar.bz2 gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.tar.lz gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.tar.xz gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.tar.zst gsoc2013-epiphany-0f5b97d114f6febf190e2403e53efd85667ff468.zip |
Fix wrong test, bug #344848.
2006-06-18 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Fix wrong test, bug #344848.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2006-06-18 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: + + Fix wrong test, bug #344848. + +2006-06-18 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: * data/default-prefs-common.js: * embed/Makefile.am: diff --git a/configure.ac b/configure.ac index b45dc5815..2e9913adb 100644 --- a/configure.ac +++ b/configure.ac @@ -549,7 +549,7 @@ if test "$enable_spell_checker" = "yes" -a "$have_gecko_spell_checker" != "yes"; AC_MSG_ERROR([Spell check support requested but $gecko_cv_gecko was not compiled with 'spellchecker' extension enabled.]) fi -if test "$enable_spell_checker" -a "$have_gecko_spell_checker" = "yes"; then +if test "$enable_spell_checker" = "yes" -a "$have_gecko_spell_checker" = "yes"; then # FIXME check which version we really need ENCHANT_REQUIRED=1.0 |