File tree 1 file changed +5
-3
lines changed 1 file changed +5
-3
lines changed 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