mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
433da1fc04
They pass fine.
9 lines
286 B
Makefile
9 lines
286 B
Makefile
include ../tools.mk
|
|
|
|
all:
|
|
# Let's get a nice error message
|
|
$(BARE_RUSTC) foo.rs --emit dep-info --out-dir foo/bar/baz 2>&1 | \
|
|
$(CGREP) "error writing dependencies"
|
|
# Make sure the filename shows up
|
|
$(BARE_RUSTC) foo.rs --emit dep-info --out-dir foo/bar/baz 2>&1 | $(CGREP) "baz"
|