Skip to content

Commit b2e27a0

Browse files
refackBridgeAR
authored andcommitted
Revert "build: silence cpp lint by default"
This reverts commit 0373836. PR-URL: #26358 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 153a29c commit b2e27a0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -1266,8 +1266,11 @@ else
12661266
@echo "To install (requires internet access) run: $ make format-cpp-build"
12671267
endif
12681268

1269-
CPPLINT_QUIET = --quiet
1270-
1269+
ifeq ($(V),1)
1270+
CPPLINT_QUIET =
1271+
else
1272+
CPPLINT_QUIET = --quiet
1273+
endif
12711274
.PHONY: lint-cpp
12721275
# Lints the C++ code with cpplint.py and check-imports.py.
12731276
lint-cpp: tools/.cpplintstamp

0 commit comments

Comments
 (0)