diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:00:41 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:00:41 +0000 |
commit | e841f4962276f94421669cba3ca613c7731ffa14 (patch) | |
tree | 36f95b6ca9bba5f708ad6a5a6f505dfa6c3ee76a /po/makefile | |
parent | 1372a4a4c205960e1e89ea64a80fa0950815db77 (diff) |
Move apt-all.pot out of build/po, and into po/, and che...
Author: doogie
Date: 2003-02-10 00:26:49 GMT
Move apt-all.pot out of build/po, and into po/, and check it into cvs.
This allows translators to do their work without checking everything out,
and building it.
Diffstat (limited to 'po/makefile')
-rw-r--r-- | po/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/po/makefile b/po/makefile index a3d9d2d8f..3c29a8031 100644 --- a/po/makefile +++ b/po/makefile @@ -41,14 +41,14 @@ $(POTFILES) : $(PO)/%.pot : rm -f $(PO)/POTFILES_$*.in $(MSGCOMM) --more-than=0 $(PO)/domains/$*/c.pot $(PO)/domains/$*/sh.pot --output=$@ -$(PO)/$(PACKAGE)-all.pot: $(POTFILES) +$(PACKAGE)-all.pot: $(POTFILES) $(MSGCOMM) --more-than=0 $(POTFILES) --output=$@ # Filter the complete translation with the domain specific file to produce # only the subtext needed for this domain # We cannot express the dependencies required for this directly with a pattern # rule, so we use the .d hack. -$(LANG_POFILES) : $(PO_DOMAINS)/%.po : $(PO)/$(PACKAGE)-all.pot +$(LANG_POFILES) : $(PO_DOMAINS)/%.po : $(PACKAGE)-all.pot printf "%s " "Generating $@" echo $@ : $(notdir $@) $(PO)/$(call GETDOMAIN,$*).pot > $(PO)/$(call GETDOMAIN,$*)_$(notdir $@).d $(MSGMERGE) $(notdir $@) $(PO)/$(call GETDOMAIN,$*).pot -o $@ |