Skip to content

Commit 886a4dd

Browse files
committed
auto merge of #9992 : astrieanna/rust/rm_rusti, r=alexcrichton
It seems like rusti has been removed, except for one reference in one Makefile. This reference breaks building rust on my computer because the "all-target" rule has rusti as a target. ~~~~ make: *** No rule to make target `x86_64-unknown-linux-gnu/stage2/bin/rusti', needed by `all-target-x86_64-unknown-linux-gnu-host-x86_64-unknown-linux-gnu'. Stop. ~~~~ Removing this line fixes things for me.
2 parents f6fccde + 9ced953 commit 886a4dd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mk/pp.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
# Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
# file at the top-level directory of this distribution and at
33
# http://rust-lang.org/COPYRIGHT.
44
#
@@ -18,7 +18,6 @@ else
1818
$(wildcard $(S)src/test/*/*.rs \
1919
$(S)src/test/*/*/*.rs) \
2020
$(wildcard $(S)src/rustpkg/*.rs) \
21-
$(wildcard $(S)src/rusti/*.rs) \
2221
$(wildcard $(S)src/rust/*.rs)
2322

2423
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \

0 commit comments

Comments
 (0)