summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-09-20 10:42:37 +0900
committerRich Trott <rtrott@gmail.com>2019-09-22 16:57:31 -0700
commit54a0553a9f0d3106fc0ab10296bdf4e17775ccbe (patch)
treea2a995ead9f17363715a2b57dcc0da7c75fbd5bf /Makefile
parentaa32e13968a00ee4dccea4cf9aa388a6ff613d89 (diff)
downloadandroid-node-v8-54a0553a9f0d3106fc0ab10296bdf4e17775ccbe.tar.gz
android-node-v8-54a0553a9f0d3106fc0ab10296bdf4e17775ccbe.tar.bz2
android-node-v8-54a0553a9f0d3106fc0ab10296bdf4e17775ccbe.zip
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 <vieuxtech@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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.