|
From: <fri...@us...> - 2010-01-25 14:10:54
|
Revision: 10025
http://zaf.svn.sourceforge.net/zaf/?rev=10025&view=rev
Author: friedelwolff
Date: 2010-01-25 14:10:47 +0000 (Mon, 25 Jan 2010)
Log Message:
-----------
Small fixes in hunspell targets. Correctly split multiple shell commands for building the myspell .xpi.
Modified Paths:
--------------
trunk/dict/utils/Makefile.language
Modified: trunk/dict/utils/Makefile.language
===================================================================
--- trunk/dict/utils/Makefile.language 2010-01-25 09:13:49 UTC (rev 10024)
+++ trunk/dict/utils/Makefile.language 2010-01-25 14:10:47 UTC (rev 10025)
@@ -62,8 +62,9 @@
TARGET_ASPELL=aspell/$(LANG).wl aspell/$(LANG).rws aspell/$(ASPELL_DIST_NAME) aspell/proc aspell/configure aspell/$(LANG).cwl aspell/info aspell/Makefile aspell/Makefile.pre aspell/$(LANG).multi aspell/*.alias aspell/COPYING aspell/README aspell/$(ASPELL_PACK_NAME)
-TARGETS_HUNSPELL=hunspell/wordlist.$(CHARSET) hunspell/pack-$(LANG)-$(REGION)-$(VERSION).zip hunspell/$(LANG)_$(REGION).zip hunspell/$(LANG)_$(REGION).dic hunspell/$(LANG)_$(REGION).aff hunspell/spell.txt hunspell/VERSION_$(LANG)_$(REGION).txt
+TARGETS_HUNSPELL=hunspell/wordlist.$(CHARSET) hunspell/hunspell-$(LANG)_$(REGION)-$(VERSION).zip hunspell/hunspell-pack-$(LANG)-$(REGION)-$(VERSION).zip hunspell/$(LANG)_$(REGION).dic hunspell/spell.txt hunspell/VERSION_$(LANG)_$(REGION).txt
+
TARGET_AUTOCORR=acor/acor_$(LANG)-$(REGION).dat*
TARGET_WORDLISTS=wordlists/wordlist.$(CHARSET) $(WORDLIST.CHARSET)
@@ -203,12 +204,10 @@
mkdir -p myspell/dictionaries
myspell/spell-$(LANG)-$(REGION)-$(VERSION).xpi: myspell/install.js myspell/install.rdf myspell/README-$(LANG)-$(REGION).txt myspell/dictionaries myspell/dictionaries/$(LANG)-$(REGION).dic myspell/dictionaries/$(LANG)-$(REGION).aff
- ( \
- cd myspell/ \
- ls \
- rm -f spell-$(LANG)-$(REGION)-$(VERSION).xpi \
- zip -r spell-$(LANG)-$(REGION)-$(VERSION).xpi dictionaries/ README-$(LANG)-$(REGION).txt install.js install.rdf \
- )
+ cd myspell/ ;\
+ ls ;\
+ rm -f spell-$(LANG)-$(REGION)-$(VERSION).xpi ;\
+ zip -r spell-$(LANG)-$(REGION)-$(VERSION).xpi dictionaries/ README-$(LANG)-$(REGION).txt install.js install.rdf :\
#=============================================================================
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|