SConstruct: fix string name

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33168 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2010-01-22 22:56:11 +00:00
parent e2c93c5f74
commit 54870a2c82

View File

@ -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