Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-09-20 04:42:37 +0300
committerRich Trott <rtrott@gmail.com>2019-09-23 02:57:31 +0300
commit54a0553a9f0d3106fc0ab10296bdf4e17775ccbe (patch)
treea2a995ead9f17363715a2b57dcc0da7c75fbd5bf /Makefile
parentaa32e13968a00ee4dccea4cf9aa388a6ff613d89 (diff)
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 c06d4f4e6c7..725f80659b5 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.