diff options
| author | bors <bors@rust-lang.org> | 2013-10-21 21:41:25 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-21 21:41:25 -0700 |
| commit | 886a4ddcec08a4fea68f31c6387c90f745a7df0f (patch) | |
| tree | 4696548737688ce84704d38b83046518dae7fe22 | |
| parent | f6fccdea8a16c276fa72c8faa35e8d568612e964 (diff) | |
| parent | 9ced953b129905a4a80a897001dc29b8d010d3e8 (diff) | |
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.
| -rw-r--r-- | mk/pp.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/pp.mk b/mk/pp.mk index f86bbb7f281..d02733d1747 100644 --- a/mk/pp.mk +++ b/mk/pp.mk @@ -1,4 +1,4 @@ -# Copyright 2012 The Rust Project Developers. See the COPYRIGHT +# Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT # file at the top-level directory of this distribution and at # http://rust-lang.org/COPYRIGHT. # @@ -18,7 +18,6 @@ else $(wildcard $(S)src/test/*/*.rs \ $(S)src/test/*/*/*.rs) \ $(wildcard $(S)src/rustpkg/*.rs) \ - $(wildcard $(S)src/rusti/*.rs) \ $(wildcard $(S)src/rust/*.rs) PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \ |
