From: Graham Percival Date: Sun, 20 Dec 2009 23:53:07 +0000 (+0000) Subject: Doc build: fix xref include dirs. X-Git-Tag: release/2.13.10-1~126 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=28943365b90e9be1c85ee1ac7c63ed7c93f0558e;p=lilypond.git Doc build: fix xref include dirs. --- diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile index 13f7d7ceb0..fc923e872b 100644 --- a/Documentation/GNUmakefile +++ b/Documentation/GNUmakefile @@ -284,14 +284,16 @@ snippet-update: DOCUMENTS_INCLUDES:=-I $(ISOLANG) \ -I $(top-build-dir)/Documentation/$(ISOLANG)/out-www \ -I $(top-src-dir)/Documentation/snippets \ --I $(top-build-dir)/Documentation/out-www +-I $(top-build-dir)/Documentation/out-www \ +-I $(top-build-dir)/Documentation/out else # ISOLANG is empty DOCUMENTS_INCLUDES:=-I . \ -I $(top-build-dir)/Documentation/out-www \ -I $(top-src-dir)/Documentation/snippets \ --I $(top-build-dir)/Documentation/snippets/out-www +-I $(top-build-dir)/Documentation/snippets/out-www \ +-I $(top-build-dir)/Documentation/out endif # ISOLANG diff --git a/python/auxiliar/manuals_definitions.py b/python/auxiliar/manuals_definitions.py index 1008f6ceee..e61c75b66f 100644 --- a/python/auxiliar/manuals_definitions.py +++ b/python/auxiliar/manuals_definitions.py @@ -3,12 +3,14 @@ # This module is imported by check_texi_refs.py references_dict = { - 'notation': 'ruser', - 'learning': 'rlearning', - 'usage': 'rprogram', + 'changes': 'rchanges', + 'contributor': 'rcontrib', 'essay': 'ressay', 'extending': 'rextend', - 'snippets': 'rlsr', + 'learning': 'rlearning', 'music-glossary': 'rglos', + 'notation': 'ruser', + 'snippets': 'rlsr', + 'usage': 'rprogram', 'internals': 'rinternals', }