Skip to content

Commit 82d0870

Browse files
committed
---
yaml --- r: 39663 b: refs/heads/incoming c: 1bc51f1 h: refs/heads/master i: 39661: e026303 39659: 61af100 39655: 21f0a79 39647: cccb807 v: v3
1 parent 1a2b192 commit 82d0870

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: d91b2d428b6c431082b68c788e3636838737fdc5
9+
refs/heads/incoming: 1bc51f172863bf9731f39b71e2e6a6db76707aa5
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/mk/docs.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ else
152152

153153
doc/rust.g: rust.md $(S)src/etc/extract_grammar.py
154154
@$(call E, extract_grammar: $@)
155-
$(Q)$(S)src/etc/extract_grammar.py $< >$@
155+
$(Q)$(CFG_PYTHON) $(S)src/etc/extract_grammar.py $< >$@
156156

157157
verify-grammar: doc/rust.g
158158
@$(call E, LLnextgen: $<)

branches/incoming/mk/snap.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ define DEF_SNAP_FOR_STAGE_H
1414

1515
ifdef CFG_INSTALL_SNAP
1616
snap-stage$(1)-H-$(2): $$(HSREQ$(1)_H_$(2))
17-
$(S)src/etc/make-snapshot.py stage$(1) $(2) install
17+
$(CFG_PYTHON) $(S)src/etc/make-snapshot.py stage$(1) $(2) install
1818
else
1919
snap-stage$(1)-H-$(2): $$(HSREQ$(1)_H_$(2))
20-
$(S)src/etc/make-snapshot.py stage$(1) $(2)
20+
$(CFG_PYTHON) $(S)src/etc/make-snapshot.py stage$(1) $(2)
2121
endif
2222

2323
endef
@@ -30,4 +30,4 @@ snap-stage1: snap-stage1-H-$(CFG_HOST_TRIPLE)
3030

3131
snap-stage2: snap-stage2-H-$(CFG_HOST_TRIPLE)
3232

33-
snap-stage3: snap-stage3-H-$(CFG_HOST_TRIPLE)
33+
snap-stage3: snap-stage3-H-$(CFG_HOST_TRIPLE)

branches/incoming/mk/stage0.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $(HBIN0_H_$(CFG_HOST_TRIPLE))/rustc$(X): \
1111
ifdef CFG_ENABLE_LOCAL_RUST
1212
$(Q)$(S)src/etc/local_stage0.sh $(CFG_HOST_TRIPLE) $(CFG_LOCAL_RUST_ROOT)
1313
else
14-
$(Q)$(S)src/etc/get-snapshot.py $(CFG_HOST_TRIPLE) $(SNAPSHOT_FILE)
14+
$(Q)$(CFG_PYTHON) $(S)src/etc/get-snapshot.py $(CFG_HOST_TRIPLE) $(SNAPSHOT_FILE)
1515
ifdef CFG_ENABLE_PAX_FLAGS
1616
@$(call E, apply PaX flags: $@)
1717
@"$(CFG_PAXCTL)" -cm "$@"

branches/incoming/mk/tests.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ tmp/$(FT).rc tmp/$(FT_DRIVER).rs: \
701701
$(RPASS_TESTS) \
702702
$(S)src/etc/combine-tests.py
703703
@$(call E, check: building combined stage2 test runner)
704-
$(Q)$(S)src/etc/combine-tests.py
704+
$(Q)$(CFG_PYTHON) $(S)src/etc/combine-tests.py
705705

706706
define DEF_CHECK_FAST_FOR_T_H
707707
# $(1) unused

branches/incoming/src/etc/sugarise-doc-comments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
#
44
# this script attempts to turn doc comment attributes (#[doc = "..."])

0 commit comments

Comments
 (0)