From b32407661c77baa99e655165dd2e369e004775d1 Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Fri, 20 Sep 2019 10:42:37 +0900 Subject: [PATCH] build: don't 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 ``` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d2f393d741e4cd..5898541735289d 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.