From a5603ec1b3675b5bce700a262fbc1c04f2d04e84 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Sat, 17 Dec 2016 01:16:07 +0100 Subject: [PATCH] make: rename AD variable to Q --- Makefile.include | 4 ++-- Makefile.vars | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.include b/Makefile.include index 004d90f900..cfd3158d60 100644 --- a/Makefile.include +++ b/Makefile.include @@ -83,10 +83,10 @@ endif QUIET ?= 1 ifeq ($(QUIET),1) - AD=@ + Q=@ MAKEFLAGS += --no-print-directory else - AD= + Q= endif # Fail on warnings. Can be overridden by `make WERROR=0`. diff --git a/Makefile.vars b/Makefile.vars index 09d6ef720e..b1e2919197 100644 --- a/Makefile.vars +++ b/Makefile.vars @@ -1,4 +1,4 @@ -export AD # Used in front of Makefile lines to suppress the printing of the command if user did not opt-in to see them. +export Q # Used in front of Makefile lines to suppress the printing of the command if user did not opt-in to see them. export QUIET # The parameter to use whether to show verbose makefile commands or not. export APPLICATION # The application, set in the Makefile which is run by the user.