|
From: <fri...@us...> - 2010-01-25 09:14:21
|
Revision: 10024
http://zaf.svn.sourceforge.net/zaf/?rev=10024&view=rev
Author: friedelwolff
Date: 2010-01-25 09:13:49 +0000 (Mon, 25 Jan 2010)
Log Message:
-----------
Don't build the .aff file from .aff.in. We assume the .aff file is there, and languages can override as they want.
Modified Paths:
--------------
trunk/dict/utils/Makefile.language
Modified: trunk/dict/utils/Makefile.language
===================================================================
--- trunk/dict/utils/Makefile.language 2010-01-25 09:03:08 UTC (rev 10023)
+++ trunk/dict/utils/Makefile.language 2010-01-25 09:13:49 UTC (rev 10024)
@@ -290,15 +290,10 @@
# this does the work of converting a wordlist into a hunspell dictionary
# it can take a while
-hunspell/$(LANG)_$(REGION).dic: hunspell/wordlist.$(CHARSET) hunspell/$(LANG)_$(REGION).aff.in $(HUNMUNCH_DEP)
- $(HUNMUNCH) hunspell/wordlist.$(CHARSET) hunspell/$(LANG)_$(REGION).aff.in >$@
+hunspell/$(LANG)_$(REGION).dic: hunspell/wordlist.$(CHARSET) hunspell/$(LANG)_$(REGION).aff
+ $(HUNMUNCH) hunspell/wordlist.$(CHARSET) hunspell/$(LANG)_$(REGION).aff >$@
-hunspell/$(LANG)_$(REGION).dic: hunspell/$(LANG)_$(REGION).aff
-hunspell/$(LANG)_$(REGION).aff: hunspell/$(LANG)_$(REGION).aff.in hunspell/$(LANG)_$(REGION).dic
- cp hunspell/$(LANG)_$(REGION).aff.in hunspell/$(LANG)_$(REGION).aff
-
-
#=============================================================================
# Autocorrect rules
#=============================================================================
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|