3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

build: Correct a mistake in the guix-manual.pot rule.

This is a follow-up to commit 0d353b06ec.

* po/doc/local.mk: Fix function name in comment.
(%D%/guix-manual.pot): Refer to *all* the prerequisites via the $^ special
variable rather than $<, which only refers to the first one.

Reported-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
Maxim Cournoyer 2021-04-30 09:49:46 -04:00
parent 9bf205e5a0
commit 0084f0054f
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -47,7 +47,7 @@ POT_OPTIONS = \
--copyright-holder "the authors of Guix (msgids)" \
--msgid-bugs-address "bug-guix@gnu.org"
# make-download-po-files-rule PO_FILES POT_FILE_INPUT
# make-update-po-files-rule PO_FILES POT_FILE_INPUT
define make-update-po-files-rule
$(1): $(2)
@if ! [ -f "$$@" ]; then \
@ -67,7 +67,7 @@ endef
touch $@
%D%/guix-manual.pot: %D%/guix.pot %D%/contributing.pot
msgcat $< > $@
msgcat $^ > $@
$(eval $(call make-update-po-files-rule,$(DOC_PO_FILES),%D%/guix-manual.pot))
$(eval $(call make-update-po-files-rule,\