mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-05 04:17:51 +00:00
Correct Nightly errors in Makefile
This commit is contained in:
parent
b3d252522a
commit
1e33f9c055
4
Makefile
4
Makefile
@ -3,13 +3,13 @@ PREFIX ?= /usr/local
|
||||
BUILD = target/release/exa
|
||||
|
||||
$(BUILD):
|
||||
@which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
||||
@which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
||||
cargo build --release
|
||||
|
||||
build: $(BUILD)
|
||||
|
||||
build-no-git:
|
||||
@which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
||||
@which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
||||
cargo build --release --no-default-features
|
||||
|
||||
INSTALL = $(PREFIX)/bin/exa
|
||||
|
Loading…
Reference in New Issue
Block a user