From 8c32248304ca1eaab2320a6a96738877c71eea2d Mon Sep 17 00:00:00 2001 From: Bertrand Jacquin Date: Sat, 30 Apr 2022 04:40:28 +0100 Subject: [PATCH] build: do not cargo --quiet --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cb549645338c..d55ce3d9d08a 100644 --- a/Makefile +++ b/Makefile @@ -329,9 +329,9 @@ endif RUST_PROFILE ?= debug ifneq ($(RUST_PROFILE),debug) -CARGO_OPTS := --profile=$(RUST_PROFILE) --quiet +CARGO_OPTS := --profile=$(RUST_PROFILE) else -CARGO_OPTS := --quiet +CARGO_OPTS := endif include external/Makefile