From 54a0553a9f0d3106fc0ab10296bdf4e17775ccbe Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Fri, 20 Sep 2019 10:42:37 +0900 Subject: 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: https://github.com/nodejs/node/pull/29623 Reviewed-By: Sam Roberts Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Benjamin Gruenbaum Reviewed-By: Colin Ihrig Reviewed-By: Trivikram Kamat --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c06d4f4e6c..725f80659b 100644 --- a/Makefile +++ b/Makefile @@ -1312,9 +1312,9 @@ else endif ifeq ($(V),1) - CPPLINT_QUIET = +CPPLINT_QUIET = else - CPPLINT_QUIET = --quiet +CPPLINT_QUIET = --quiet endif .PHONY: lint-cpp # Lints the C++ code with cpplint.py and check-imports.py. -- cgit v1.2.3