diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-04-17 08:51:35 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-04-17 08:51:35 +0200 |
commit | ebdab464ce7bb46765b962c673fbdfc75e9d77a1 (patch) | |
tree | 2f055f25be5599d4812bfa481dee26a2e1fcb5da /top | |
parent | abb53db0ac56280d00b2cb8a67f61caff622ea89 (diff) | |
download | gnulib-ebdab464ce7bb46765b962c673fbdfc75e9d77a1.tar.gz |
maintainer-makefile: (PO_DOMAIN): New variable, allows overriding of gettext domain.
Diffstat (limited to 'top')
-rw-r--r-- | top/maint.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/top/maint.mk b/top/maint.mk index 3390e7bb42..2c53ea54e6 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -151,7 +151,8 @@ coverage: init-coverage build-coverage gen-coverage # Update gettext files. PACKAGE ?= $(shell basename $(PWD)) -POURL = http://translationproject.org/latest/$(PACKAGE)/ +PO_DOMAIN ?= $(PACKAGE) +POURL = http://translationproject.org/latest/$(PO_DOMAIN)/ PODIR ?= po refresh-po: rm -f $(PODIR)/*.po && \ |