mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 01:49:11 +00:00
Move xgettext invocation out of update-po target into update-pot
This commit is contained in:
parent
750c0d2ebe
commit
878c770000
@ -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)"; \
|
||||
|
Loading…
x
Reference in New Issue
Block a user