diff options
author | Jonas Smedegaard <dr@jones.dk> | 2007-11-06 12:59:04 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2007-11-06 12:59:04 +0100 |
commit | e2341646973fc68b3be40bd6ae4e978feb46f2ea (patch) | |
tree | 8e6bca613f0651174051a793bedec8f6a19b9dce | |
parent | 74e15aa80e8234cfefabe109e810eadb6d50f982 (diff) |
Fix resolving translations target in Makefile.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ fileformat = $(if $(filter templates,$(3)),htmltemplate,text) filetype = $(if $(filter templates,$(3)),tmpl,mdwn) ALL_POTFILES += $(podir)/$(3).pot $(3)_L10NFILES = $$(shell cd "$(1)" && find * -type f -name '*.$$(filetype)') -ALL_L10NFILES += $(patsubst %,$(1)/%,$(3)_L10NFILES) +ALL_L10NFILES += $$(patsubst %,$(1)/%,$$($(3)_L10NFILES)) $(podir)/$(3).pot: $(1) cd "$(1)" && po4a-gettextize -M UTF-8 -L UTF-8 -f $$(fileformat) $$(patsubst %,-m %,$$($(3)_L10NFILES)) -p $(CURDIR)/$$@ |