From: Graham Percival Date: Fri, 5 Mar 2010 13:38:52 +0000 (+0000) Subject: Web build: reduce the number of errors/warnings. X-Git-Tag: release/2.13.16-1~52^2~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e2f57927b518505ebbeed17bc7b9c6880e813c19;p=lilypond.git Web build: reduce the number of errors/warnings. --- diff --git a/Documentation/included/helpus.itexi b/Documentation/included/helpus.itexi index 8386924feb..e4d094593d 100644 --- a/Documentation/included/helpus.itexi +++ b/Documentation/included/helpus.itexi @@ -52,7 +52,7 @@ development environment. See @rcontrib{Starting with Git}.} @item Documentation: see @rcontrib{Documentation work}, and -@rcontrib{Building documentation without compiling LilyPond}. +@rcontrib{Building documentation without compiling}. @item Website: the website is built from the normal documentation diff --git a/website.make b/website.make index 4657578620..26efac9ceb 100644 --- a/website.make +++ b/website.make @@ -56,12 +56,19 @@ website-xrefs: website-version $(EXTRACT_TEXI_FILENAMES) -I $(top-src-dir)/Documentation/ \ -I $(OUT) -o $(OUT) --split=node \ $(top-src-dir)/Documentation/web.texi - $(foreach manual, $(MANUALS), \ - $(EXTRACT_TEXI_FILENAMES) -I $(top-src-dir)/Documentation/ \ - -I $(OUT) -o $(OUT) $(manual) && ) : + # normal manuals + for m in $(MANUALS); do \ + b=`basename "$$m" .texi`; \ + d=`basename "$$b" .tely`; \ + $(EXTRACT_TEXI_FILENAMES) \ + -I $(top-src-dir)/Documentation/ \ + -I $(top-src-dir)/Documentation/"$$d"/ \ + -I $(OUT) -o $(OUT) "$$m" ; \ + done # translations for l in $(WEB_LANGS); do \ $(EXTRACT_TEXI_FILENAMES) \ + -I $(top-src-dir)/Documentation/ \ -I $(top-src-dir)/Documentation/"$$l" \ -I $(OUT) -o $(OUT) --split=node \ $(top-src-dir)/Documentation/"$$l"/web.texi ;\