From: Uwe Stöhr Date: Fri, 22 Jan 2010 22:56:11 +0000 (+0000) Subject: SConstruct: fix string name X-Git-Tag: 2.0.0~4262 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=54870a2c825fd0e2644143174f836b11f863dc07;p=features.git SConstruct: fix string name git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33168 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/scons/SConstruct b/development/scons/SConstruct index e28e6f1de3..634ed18102 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -816,7 +816,7 @@ if spell_opt in ['auto', 'aspell'] and conf.CheckLib(aspell_lib): spell_engine = 'USE_ASPELL' elif spell_opt in ['auto', 'enchant'] and conf.CheckLib('enchant'): spell_engine = 'USE_ENCHANT' -elif spell_opt in ['auto', 'hunspell'] and conf.CheckLib('enchant'): +elif spell_opt in ['auto', 'hunspell'] and conf.CheckLib('hunspell'): spell_engine = 'USE_HUNSPELL' else: spell_engine = None