File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: f71f97b7c2905c7254f87a9185576939dbbb7010
8
+ refs/heads/try2: 890754794c02615310781bc006149dddeb2770bc
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ HTML_DEPS += doc/version_info.html
110
110
doc/version_info.html : $(D ) /version_info.html.template $(MKFILE_DEPS ) \
111
111
$(wildcard $(D)/*.*) | doc/
112
112
@$(call E, version-info: $@)
113
- sed -e "s/VERSION/$(CFG_RELEASE)/; s/SHORT_HASH/$(shell echo \
113
+ $(Q) sed -e "s/VERSION/$(CFG_RELEASE)/; s/SHORT_HASH/$(shell echo \
114
114
$(CFG_VER_HASH) | head -c 8)/;\
115
115
s/STAMP/$(CFG_VER_HASH)/;" $< >$@
116
116
@@ -156,15 +156,17 @@ doc/footer.tex: $(D)/footer.inc | doc/
156
156
# HTML (rustdoc)
157
157
DOC_TARGETS += doc/not_found.html
158
158
doc/not_found.html : $(D ) /not_found.md $(HTML_DEPS ) | doc/
159
- $(RUSTDOC ) $(RUSTDOC_HTML_OPTS_NO_CSS ) --markdown-css http://doc.rust-lang.org/rust.css $<
159
+ @$(call E, rustdoc: $@ )
160
+ $(Q )$(RUSTDOC ) $(RUSTDOC_HTML_OPTS_NO_CSS ) \
161
+ --markdown-css http://doc.rust-lang.org/rust.css $<
160
162
161
163
define DEF_DOC
162
164
163
165
# HTML (rustdoc)
164
166
DOC_TARGETS += doc/$(1 ) .html
165
167
doc/$(1 ) .html: $$(D ) /$(1 ) .md $$(HTML_DEPS ) $$(RUSTDOC_DEPS_$(1 ) ) | doc/
166
168
@$$(call E, rustdoc: $$@ )
167
- $$(RUSTDOC ) $$(RUSTDOC_HTML_OPTS ) $$(RUSTDOC_FLAGS_$(1 ) ) $$<
169
+ $$(Q )$$( RUSTDOC ) $$(RUSTDOC_HTML_OPTS ) $$(RUSTDOC_FLAGS_$(1 ) ) $$<
168
170
169
171
ifneq ($(ONLY_HTML_DOCS ) ,1)
170
172
You can’t perform that action at this time.
0 commit comments