Skip to content

Commit 01cf2d1

Browse files
committed
---
yaml --- r: 100822 b: refs/heads/snap-stage3 c: ab17f44 h: refs/heads/master v: v3
1 parent f87f89a commit 01cf2d1

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e3b1f3c443c048913e2d573fcc5a9c2be3484a78
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 2852fea61e51752a0a7f6c2aeb8fe798a2890c4e
4+
refs/heads/snap-stage3: ab17f445fe999bf7edf22d09b16ac7b7fd1155be
55
refs/heads/try: a97642026c18a624ff6ea01075dd9550f8ed07ff
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
# (may require `CFG_ENABLE_VALGRIND`)
3838
# * `NO_REBUILD=1` - Don't rebootstrap when testing std
3939
# (and possibly other crates)
40+
# * `NO_MKFILE_DEPS=1` - Don rebuild for modified .mk files
4041
# * `SAVE_TEMPS=1` - Use `--save-temps` flag on all `rustc` invocations
4142
# * `ASM_COMMENTS=1` - Use `-Z asm-comments`
4243
# * `TIME_PASSES=1` - Use `-Z time-passes`

branches/snap-stage3/mk/main.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
# and include all of the .d files in one fell swoop.
1313
ALL_OBJ_FILES :=
1414

15+
ifneq ($(NO_MAKEFILE_DEPS),)
16+
MKFILE_DEPS :=
17+
else
1518
MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR)mk/,*)
19+
endif
1620
NON_BUILD_HOST = $(filter-out $(CFG_BUILD),$(CFG_HOST))
1721
NON_BUILD_TARGET = $(filter-out $(CFG_BUILD),$(CFG_TARGET))
1822

0 commit comments

Comments
 (0)