blob: 9f91618bda493598f75214de9e900f03319b6fb1 (
plain)
1
2
3
4
5
6
7
8
|
-include ../tools.mk
all:
# Let's get a nice error message
$(RUSTC) foo.rs --dep-info foo/bar/baz 2>&1 | \
grep "error writing dependencies"
# Make sure the filename shows up
$(RUSTC) foo.rs --dep-info foo/bar/baz 2>&1 | grep "baz"
|