Skip to content

Commit

Permalink
auto merge of #9992 : astrieanna/rust/rm_rusti, r=alexcrichton
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bors committed Oct 22, 2013
2 parents f6fccde + 9ced953 commit 886a4dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mk/pp.mk
Original file line number Diff line number Diff line change
@@ -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.
#
Expand All @@ -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 \
Expand Down

0 comments on commit 886a4dd

Please sign in to comment.