From 91e1a043a656c58ac25ff5dd4b60e9684f3c3452 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Thu, 28 Feb 2019 13:00:33 -0500 Subject: Revert "build: silence cpp lint by default" This reverts commit 0373836b390999644d116c96b41ba05a8a0f181a. PR-URL: https://github.com/nodejs/node/pull/26358 Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dd18ebdcac..3d8ef4dc57 100644 --- a/Makefile +++ b/Makefile @@ -1266,8 +1266,11 @@ else @echo "To install (requires internet access) run: $ make format-cpp-build" endif -CPPLINT_QUIET = --quiet - +ifeq ($(V),1) + CPPLINT_QUIET = +else + CPPLINT_QUIET = --quiet +endif .PHONY: lint-cpp # Lints the C++ code with cpplint.py and check-imports.py. lint-cpp: tools/.cpplintstamp -- cgit v1.2.3