diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:38 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:38 +0000 |
commit | c54ea1d798dfb519d7b81793df0a8e58105d09fc (patch) | |
tree | 684c40d78fe59f1eed5bc604cd1dba56b25937d7 /po/makefile | |
parent | 51ed677d98ed73a42f73b540224f11b002bd4224 (diff) |
Make all .po files depend on -all.pot, so make -j works.
Author: doogie
Date: 2002-11-09 06:32:56 GMT
Make all .po files depend on -all.pot, so make -j works.
Diffstat (limited to 'po/makefile')
-rw-r--r-- | po/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/makefile b/po/makefile index 5abbb8118..4185d93e0 100644 --- a/po/makefile +++ b/po/makefile @@ -46,7 +46,7 @@ $(PO)/$(PACKAGE)-all.pot: $(POTFILES) # 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 : +$(LANG_POFILES) : %.po : $(PO)/$(PACKAGE)-all.pot echo Generating $@ echo $@ : $(notdir $@) $(PO)/$(call GETDOMAIN,$*).pot > $(PO)/$(call GETDOMAIN,$*)_$(notdir $@).d $(MSGMERGE) $(notdir $@) $(PO)/$(call GETDOMAIN,$*).pot -o $@ |