From 3fb999e6a00c38102d0b59ef93d4f40f8d403797 Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 31 Aug 2020 22:51:07 -0400 Subject: [PATCH] Tidy up CLIPPY_DENY and have clippy target also use DENY This is neater and more uniform. Signed-off-by: mulhern --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3d041561c47..fd3ca63a172 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,6 @@ CLIPPY_DENY = -D clippy::pedantic \ -A clippy::too_many_lines \ -A clippy::unseparated_literal_suffix \ -A clippy::unused_self \ - -D warnings ${HOME}/.cargo/bin/cargo-outdated: cargo install cargo-outdated @@ -124,7 +123,7 @@ stratisd.8.gz: stratisd.8 gzip --stdout docs/stratisd.8 > docs/stratisd.8.gz clippy: - cargo clippy --all-targets --all-features -- ${CLIPPY_DENY} + cargo clippy --all-targets --all-features -- ${DENY} ${CLIPPY_DENY} .PHONY: audit