From ecf98b0839c6cbe5010849e0cd91998af17f511a Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Mon, 18 Mar 2019 10:47:34 -0400 Subject: 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 Reviewed-By: Daniel Bevenius Reviewed-By: Ruben Bridgewater --- Makefile | 7 +++---- 1 file 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 -- cgit v1.2.3