summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRefael Ackermann <refack@gmail.com>2019-03-18 10:47:34 -0400
committerRefael Ackermann <refack@gmail.com>2019-03-21 20:21:01 -0400
commitecf98b0839c6cbe5010849e0cd91998af17f511a (patch)
treea3783aee7f32b94687bc27ea8e6f13d7f1b638f9 /Makefile
parentb05fbaab43509078797cb46a12f54bb7cdea2443 (diff)
downloadandroid-node-v8-ecf98b0839c6cbe5010849e0cd91998af17f511a.tar.gz
android-node-v8-ecf98b0839c6cbe5010849e0cd91998af17f511a.tar.bz2
android-node-v8-ecf98b0839c6cbe5010849e0cd91998af17f511a.zip
build,meta: quiet/pretty make output by default
PR-URL: https://github.com/nodejs/node/pull/26740 Refs: https://github.com/nodejs/node/pull/26252 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 3d8ef4dc57..062d70b844 100644
--- a/Makefile
+++ b/Makefile
@@ -54,10 +54,9 @@ BUILD_DOWNLOAD_FLAGS ?= --download=all
BUILD_INTL_FLAGS ?= --with-intl=small-icu
BUILD_RELEASE_FLAGS ?= $(BUILD_DOWNLOAD_FLAGS) $(BUILD_INTL_FLAGS)
-# Default to verbose builds.
-# To do quiet/pretty builds, run `make V=` to set V to an empty string,
-# or set the V environment variable to an empty string.
-V ?= 1
+# Default to quiet/pretty builds.
+# To do verbose builds, run `make V=1` or set the V environment variable.
+V ?= 0
# Use -e to double check in case it's a broken link
# Use $(PWD) so we can cd to anywhere before calling this