|
From: <dwa...@us...> - 2012-07-11 11:12:11
|
Revision: 10960
http://zaf.svn.sourceforge.net/zaf/?rev=10960&view=rev
Author: dwaynebailey
Date: 2012-07-11 11:12:00 +0000 (Wed, 11 Jul 2012)
Log Message:
-----------
Make VERSION a dependent file
We weren't regenerating in some cases of
files that refer to the version number
Modified Paths:
--------------
trunk/dict/utils/Makefile.language
Modified: trunk/dict/utils/Makefile.language
===================================================================
--- trunk/dict/utils/Makefile.language 2012-07-11 11:10:29 UTC (rev 10959)
+++ trunk/dict/utils/Makefile.language 2012-07-11 11:12:00 UTC (rev 10960)
@@ -218,10 +218,10 @@
cp $^ $@
# Customise the install.js
-hunspell/install.js: ../utils/mozilla/install.js.2.in
+hunspell/install.js: ../utils/mozilla/install.js.2.in VERSION
sed "s/{LANG}/$(LANG)/; s/{REGION}/$(REGION)/; s/{LANGNAME}/$(LANGNAME)/; s/{REGIONNAME}/$(REGIONNAME)/; s/{VERSION}/$(VERSION)/" < $< > $@
-hunspell/install.rdf: ../utils/mozilla/install.rdf.in
+hunspell/install.rdf: ../utils/mozilla/install.rdf.in VERSION
sed "s/{LANG}/$(LANG)/; s/{REGION}/$(REGION)/; s/{LANGNAME}/$(LANGNAME)/; s/{REGIONNAME}/$(REGIONNAME)/; s/{VERSION}/$(VERSION)/; s/{ADDONTYPE}/$(ADDONTYPE)/" < $< > $@
hunspell/dictionaries/$(LANG)-$(REGION).dic: hunspell/$(LANG)_$(REGION).dic
@@ -236,7 +236,7 @@
hunspell/chrome/content:
mkdir -p hunspell/chrome/content
-hunspell/chrome/content/dict-$(LANG)-$(REGION).js: ../utils/mozilla/chrome/content/dict.js.in
+hunspell/chrome/content/dict-$(LANG)-$(REGION).js: ../utils/mozilla/chrome/content/dict.js.in VERSION
sed "s/{LANG}/$(LANG)/; s/{REGION}/$(REGION)/; s/{LANGNAME}/$(LANGNAME)/; s/{REGIONNAME}/$(REGIONNAME)/; s/{VERSION}/$(VERSION)/" < $< > $@
hunspell/chrome/content/dict-$(LANG)-$(REGION).xul: ../utils/mozilla/chrome/content/dict.xul.in
@@ -251,7 +251,7 @@
hunspell/chrome.manifest: ../utils/mozilla/chrome.manifest.in
sed "s/{LANG}/$(LANG)/; s/{REGION}/$(REGION)/; s/{LANGNAME}/$(LANGNAME)/; s/{REGIONNAME}/$(REGIONNAME)/; s/{VERSION}/$(VERSION)/" < $< > $@
-hunspell/spell-$(LANG)-$(REGION)-$(VERSION).xpi: hunspell/install.js hunspell/install.rdf hunspell/README-$(LANG)-$(REGION).txt hunspell/dictionaries hunspell/dictionaries/$(LANG)-$(REGION).dic hunspell/dictionaries/$(LANG)-$(REGION).aff hunspell/defaults/preferences hunspell/defaults/preferences/defaults.js hunspell/chrome/content hunspell/chrome/content/dict-$(LANG)-$(REGION).js hunspell/chrome/content hunspell/chrome/content/dict-$(LANG)-$(REGION).xul hunspell/chrome.manifest
+hunspell/spell-$(LANG)-$(REGION)-$(VERSION).xpi: hunspell/install.js hunspell/install.rdf hunspell/README-$(LANG)-$(REGION).txt hunspell/dictionaries hunspell/dictionaries/$(LANG)-$(REGION).dic hunspell/dictionaries/$(LANG)-$(REGION).aff hunspell/defaults/preferences hunspell/defaults/preferences/defaults.js hunspell/chrome/content hunspell/chrome/content/dict-$(LANG)-$(REGION).js hunspell/chrome/content hunspell/chrome/content/dict-$(LANG)-$(REGION).xul hunspell/chrome.manifest VERSION
cd hunspell/ ;\
ls ;\
rm -f spell-$(LANG)-$(REGION)-$(VERSION).xpi ;\
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|