Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1846)

Unified Diff: make/website.make

Issue 4428077: Fix error messages in website build (Closed)
Patch Set: More changes to website build to make it quieter Created 12 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Documentation/lilypond-texi2html.init ('k') | scripts/build/bib2texi.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: make/website.make
diff --git a/make/website.make b/make/website.make
index e05aa8ff9d9f770b34b9d2a9a77c949f4de54834..45b6d44bf4b4002a47ab695c54b3debdbb9bf7a1 100644
--- a/make/website.make
+++ b/make/website.make
@@ -4,6 +4,12 @@
################################################################
##### SECURITY -- check these values for lilypond.org #########
################################################################
+
+quiet-run = $(findstring s, $(MAKEFLAGS))
+ifeq ($(quiet-run),s)
+ quiet-string=-q
+endif
+
ifeq ($(WEBSITE_ONLY_BUILD),1)
### for lilypond.org
TOP_SRC_DIR=$(HOME)/lilypond/lilypond-git
@@ -68,6 +74,8 @@ website-xrefs: website-version
-I $(top-src-dir)/Documentation \
-I $(top-src-dir)/Documentation/"$$l" \
-I $(OUT) -o $(OUT) --split=node \
+ --known-missing-files=$(top-src-dir)/scripts/build/website-known-missing-files.txt \
+ $(quiet-string) \
$(top-src-dir)/Documentation/"$$l"/web.texi ;\
for m in $(MANUALS); do \
n=`echo "$$m" | sed 's/Documentation/Documentation\/'$$l'/'` ; \
@@ -78,6 +86,8 @@ website-xrefs: website-version
-I $(top-src-dir)/Documentation \
-I $(top-src-dir)/Documentation/"$$l" \
-I $(top-src-dir)/Documentation/"$$l"/"$$d" \
+ --known-missing-files=$(top-src-dir)/scripts/build/website-known-missing-files.txt \
+ $(quiet-string) \
-I $(OUT) -o $(OUT) "$$n" ; \
fi ; \
done; \
@@ -88,11 +98,13 @@ website-bibs: website-version
$(WEB_BIBS) -s web \
-s $(top-src-dir)/Documentation/lily-bib \
-o $(OUT)/others-did.itexi \
+ $(quiet-string) \
$(top-src-dir)/Documentation/web/others-did.bib
BSTINPUTS=$(top-src-dir)/Documentation/web \
$(WEB_BIBS) -s web \
-s $(top-src-dir)/Documentation/lily-bib \
-o $(OUT)/we-wrote.itexi \
+ $(quiet-string) \
$(top-src-dir)/Documentation/web/we-wrote.bib
« no previous file with comments | « Documentation/lilypond-texi2html.init ('k') | scripts/build/bib2texi.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b