Skip to content

Commit 19b2eae

Browse files
committed
---
yaml --- r: 148947 b: refs/heads/try2 c: 4352a8d h: refs/heads/master i: 148945: 98c6d10 148943: a51886d v: v3
1 parent aea55bc commit 19b2eae

File tree

146 files changed

+3472
-726
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+3472
-726
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: a27934c555d9f61a4307abe218ad6884ad76343e
8+
refs/heads/try2: 4352a8d604c4643e37333c7054089569caa943c7
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/mk/docs.mk

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@ doc/guide-tasks.html: $(D)/guide-tasks.md $(HTML_DEPS)
205205
$(Q)$(CFG_NODE) $(D)/prep.js --highlight $< | \
206206
$(CFG_PANDOC) $(HTML_OPTS) --output=$@
207207

208+
DOCS += doc/guide-conditions.html
209+
doc/guide-conditions.html: $(D)/guide-conditions.md $(HTML_DEPS)
210+
@$(call E, pandoc: $@)
211+
$(Q)$(CFG_NODE) $(D)/prep.js --highlight $< | \
212+
$(CFG_PANDOC) $(HTML_OPTS) --output=$@
213+
208214
DOCS += doc/guide-pointers.html
209215
doc/guide-pointers.html: $(D)/guide-pointers.md $(HTML_DEPS)
210216
@$(call E, pandoc: $@)
@@ -275,7 +281,8 @@ endif
275281

276282
# The rustdoc executable, rpath included in case --disable-rpath was provided to
277283
# ./configure
278-
RUSTDOC = $(HBIN2_H_$(CFG_BUILD))/rustdoc$(X_$(CFG_BUILD))
284+
RUSTDOC = $(RPATH_VAR2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) \
285+
$(HBIN2_H_$(CFG_BUILD))/rustdoc$(X_$(CFG_BUILD))
279286

280287
# The library documenting macro
281288
#
@@ -290,9 +297,7 @@ doc/$(1)/index.html: \
290297
$$(foreach dep,$$(RUST_DEPS_$(1)), \
291298
$$(TLIB2_T_$(CFG_BUILD)_H_$(CFG_BUILD))/stamp.$$(dep))
292299
@$$(call E, rustdoc: $$@)
293-
$$(Q)$$(RPATH_VAR2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $$(RUSTDOC) \
294-
--cfg stage2 $$<
295-
300+
$$(Q)$$(RUSTDOC) --cfg stage2 $$<
296301
endef
297302

298303
$(foreach crate,$(CRATES),$(eval $(call libdoc,$(crate))))

branches/try2/mk/tests.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ TEST_CRATES = $(TEST_TARGET_CRATES) $(TEST_HOST_CRATES)
2121

2222
# Markdown files under doc/ that should have their code extracted and run
2323
DOC_TEST_NAMES = tutorial guide-ffi guide-macros guide-lifetimes \
24-
guide-tasks guide-container guide-pointers \
24+
guide-tasks guide-conditions guide-container guide-pointers \
2525
complement-cheatsheet guide-runtime \
2626
rust
2727

0 commit comments

Comments
 (0)