diff options
author | Alex Crichton <alex@alexcrichton.com> | 2014-07-07 06:24:37 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2014-07-07 06:24:37 -0700 |
commit | 624d5398184ccd500c3ce02338006f32f380fcc9 (patch) | |
tree | 9127deb740f116ab4d26ef9fb089945570c02bf3 | |
parent | 6e0701caa513e11f939899c4d6c258537796c0d3 (diff) | |
download | milf-rs-624d5398184ccd500c3ce02338006f32f380fcc9.tar.gz milf-rs-624d5398184ccd500c3ce02338006f32f380fcc9.zip |
--crate-file-name => --print-file-name
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ RUSTC ?= rustc RUSTDOC ?= rustdoc BUILD ?= build -LIB := $(BUILD)/$(shell $(RUSTC) --crate-file-name src/toml.rs) +LIB := $(BUILD)/$(shell $(RUSTC) --print-file-name src/toml.rs) TEST := $(BUILD)/tomltest all: $(LIB) |