diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-04-29 21:38:17 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-04-29 21:42:14 +0200 |
commit | 39764ef893b7b65a8ce55e13746fed8fd0bad6e0 (patch) | |
tree | 0b40a0ef564771903e9ebde2a214cc24f2bcb660 /doc | |
parent | adc61d72448de550614b71f120dc5b3a340f6dc0 (diff) | |
download | patches-39764ef893b7b65a8ce55e13746fed8fd0bad6e0.tar patches-39764ef893b7b65a8ce55e13746fed8fd0bad6e0.tar.gz |
build: Use only one domain for guix-manual.
* Makefile.am (assert-no-store-file-names): Exclude guix-manual.
* po/doc/guix.pot po/doc/contributing.pot: Merge into...
* po/doc/guix-manual.pot: ...this.
* po/doc/guix.fr.po po/doc/contributing.fr.po: Merge into...
* po/doc/guix-manual.fr.po: ...this.
* doc/local.mk: Replace old file names.
* po/doc/local.mk: Replace old file names.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/local.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/local.mk b/doc/local.mk index 1bfc03aba8..0b7904329a 100644 --- a/doc/local.mk +++ b/doc/local.mk @@ -90,14 +90,14 @@ cat "$@.tmp" | egrep '@p?x?ref' -A1 | sed 'N;s|--\n||g;P;D' | sed 's|^| |g' | \ done endef -$(srcdir)/%D%/guix.%.texi: po/doc/guix.%.po $(srcdir)/%D%/contributing.%.texi +$(srcdir)/%D%/guix.%.texi: po/doc/guix-manual.%.po $(srcdir)/%D%/contributing.%.texi -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/guix.texi" -p "$<" -l "$@.tmp" -sed -i "s|guix\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp" -$(AM_V_POXREF)$(xref_command) -mv "$@.tmp" "$@" -$(srcdir)/%D%/contributing.%.texi: po/doc/guix.%.po po/doc/contributing.%.po - -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/contributing.texi" -p "$(word 2,$^)" -l "$@.tmp" +$(srcdir)/%D%/contributing.%.texi: po/doc/guix-manual.%.po + -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/contributing.texi" -p "$<" -l "$@.tmp" -$(AM_V_POXREF)$(xref_command) -mv "$@.tmp" "$@" |