diff options
author | Sakthipriyan Vairamani (thefourtheye) <thechargingvolcano@gmail.com> | 2016-10-31 17:37:24 +0530 |
---|---|---|
committer | Myles Borins <mborins@us.ibm.com> | 2016-11-22 15:52:34 +0800 |
commit | c1aee029d5ba2a491dd96a0e979a0df3929c9809 (patch) | |
tree | c090eff08263751b901463cdbb60c407ce55b704 /Makefile | |
parent | 4ccdbb27c509abb0c409abf937b8e5fe2e9e8f02 (diff) | |
download | node-new-c1aee029d5ba2a491dd96a0e979a0df3929c9809.tar.gz |
build: start comments at beginning of line
As the comments are indented in Makefile, they are actually echoed
on the screen. This patch makes sure that the comments actually start
at the beginning of the line, and so not echoed and ignored.
PR-URL: https://github.com/nodejs/node/pull/9375
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -161,8 +161,8 @@ test/addons/.buildstamp: config.gypi \ deps/uv/include/*.h deps/v8/include/*.h \ src/node.h src/node_buffer.h src/node_object_wrap.h src/node_version.h \ test/addons/.docbuildstamp - # Cannot use $(wildcard test/addons/*/) here, it's evaluated before - # embedded addons have been generated from the documentation. +# Cannot use $(wildcard test/addons/*/) here, it's evaluated before +# embedded addons have been generated from the documentation. for dirname in test/addons/*/; do \ echo "\nRunning addons test $$PWD/$$dirname" ; \ $(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp --loglevel=$(LOGLEVEL) rebuild \ @@ -260,7 +260,7 @@ test-timers-clean: ifneq ("","$(wildcard deps/v8/tools/run-tests.py)") test-v8: v8 - # note: performs full test unless QUICKCHECK is specified +# note: performs full test unless QUICKCHECK is specified deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \ --mode=$(BUILDTYPE_LOWER) $(V8_TEST_OPTIONS) $(QUICKCHECK_ARG) \ --no-presubmit \ @@ -268,7 +268,7 @@ test-v8: v8 $(TAP_V8) test-v8-intl: v8 - # note: performs full test unless QUICKCHECK is specified +# note: performs full test unless QUICKCHECK is specified deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \ --mode=$(BUILDTYPE_LOWER) --no-presubmit $(QUICKCHECK_ARG) \ --shell-dir=deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) intl \ @@ -281,7 +281,7 @@ test-v8-benchmarks: v8 $(TAP_V8_BENCHMARKS) test-v8-all: test-v8 test-v8-intl test-v8-benchmarks - # runs all v8 tests +# runs all v8 tests else test-v8 test-v8-intl test-v8-benchmarks test-v8-all: @echo "Testing v8 is not available through the source tarball." |