diff options
author | Joyee Cheung <joyeec9h3@gmail.com> | 2019-09-20 10:42:37 +0900 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2019-09-22 16:57:31 -0700 |
commit | 54a0553a9f0d3106fc0ab10296bdf4e17775ccbe (patch) | |
tree | a2a995ead9f17363715a2b57dcc0da7c75fbd5bf /Makefile | |
parent | aa32e13968a00ee4dccea4cf9aa388a6ff613d89 (diff) | |
download | node-new-54a0553a9f0d3106fc0ab10296bdf4e17775ccbe.tar.gz |
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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |