2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Move xgettext invocation out of update-po target into update-pot

This commit is contained in:
Todd C. Miller 2011-06-06 08:46:50 -04:00
parent 750c0d2ebe
commit 878c770000

View File

@ -147,11 +147,10 @@ sync-po:
rsync -Lrtvz translationproject.org::tp/latest/sudo/ src/po/
rsync -Lrtvz translationproject.org::tp/latest/sudoers/ plugins/sudoers/po/
update-po:
update-pot:
@cd $(top_srcdir); \
for pot in $(POTFILES); do \
echo "Updating $$pot"; \
podir=`dirname $$pot`; \
domain=`basename $$pot .pot`; \
case "$$domain" in \
sudo) cfiles="src/*c common/*c compat/*c";; \
@ -159,6 +158,12 @@ update-po:
*) echo unknown domain $$domain continue;; \
esac; \
$(XGETTEXT) $(XGETTEXT_OPTS) -d$$domain $$cfiles -o $$pot; \
done
update-po: update-pot
@cd $(top_srcdir); \
for pot in $(POTFILES); do \
podir=`dirname $$pot`; \
set -- $(LINGUAS); \
while test $$# != 0; do \
echo $(ECHO_N) "Updating $$podir/$$1.po$(ECHO_C)"; \