Skip to content

Commit 5c24bc6

Browse files
joyeecheungBridgeAR
authored andcommitted
build: do not indent assignments in Makefile
Indented assignment in a Makefile can be interpreted as a command in e.g. GNU Make 3.81 which results in the following error: ``` make: CPPLINT_QUIET: No such file or directory ``` PR-URL: #29623 Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 67f5de9 commit 5c24bc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1312,9 +1312,9 @@ else
13121312
endif
13131313

13141314
ifeq ($(V),1)
1315-
CPPLINT_QUIET =
1315+
CPPLINT_QUIET =
13161316
else
1317-
CPPLINT_QUIET = --quiet
1317+
CPPLINT_QUIET = --quiet
13181318
endif
13191319
.PHONY: lint-cpp
13201320
# Lints the C++ code with cpplint.py and check-imports.py.

0 commit comments

Comments
 (0)