Skip to content

Commit 550667a

Browse files
committed
Fix snap rules to depend more correctly on rustc$(X) not rustc.
1 parent a2e2e78 commit 550667a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mk/snap.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

2-
snap-stage1: stage1/rustc stage1/glue.o stage1/$(CFG_STDLIB)
2+
snap-stage1: stage1/rustc$(X) stage1/glue.o stage1/$(CFG_STDLIB)
33
$(CFG_SRC_DIR)src/etc/make-snapshot.py stage1
44

5-
snap-stage2: stage2/rustc stage2/glue.o stage2/$(CFG_STDLIB)
5+
snap-stage2: stage2/rustc$(X) stage2/glue.o stage2/$(CFG_STDLIB)
66
$(CFG_SRC_DIR)src/etc/make-snapshot.py stage2
77

8-
snap-stage3: stage3/rustc stage3/glue.o stage3/$(CFG_STDLIB)
8+
snap-stage3: stage3/rustc$(X) stage3/glue.o stage3/$(CFG_STDLIB)
99
$(CFG_SRC_DIR)src/etc/make-snapshot.py stage3
1010

0 commit comments

Comments
 (0)