Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit f3e8c16

Browse files
author
Franck Royer
committed
Pass install arguments to allow make install on windows
1 parent 1910652 commit f3e8c16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ CARGO_NIGHTLY = $(RUSTUP) run --install $(NIGHTLY_TOOLCHAIN) cargo --color alway
1010
ifeq ($(OS),Windows_NT)
1111
BUILD_ARGS := --no-default-features
1212
TEST_ARGS := --no-default-features
13+
INSTALL_ARGS := --no-default-features
1314
endif
1415

1516
build: build_debug
@@ -35,7 +36,7 @@ install_tomlfmt: install_rust
3536
## User install
3637

3738
install:
38-
$(CARGO) install --force --path .
39+
$(CARGO) install --force --path . $(INSTALL_ARGS)
3940

4041
clean:
4142
$(CARGO) clean

0 commit comments

Comments
 (0)