From c94658aefc17a94c610087adffe68c53114e00b2 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 14 Apr 2015 09:15:59 +0200 Subject: build: Rename LD command variable to LDQ In order to be able to set the (sort of) standard command variables CC, LD etc. from configure via Config, rename the silent LD command variable to LDQ, in accordance with the existing CCQ. Signed-off-by: Tobias Klauser --- Cmds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cmds') diff --git a/Cmds b/Cmds index 1c9fc72..aa8c0a2 100644 --- a/Cmds +++ b/Cmds @@ -6,7 +6,7 @@ SHELL := $(shell if [ -x /bin/bash ]; then echo /bin/bash; else echo /bin/sh; fi # Compiler related stuff CC = gcc -LD = $(Q)echo -e " LD\t$@" && $(CCACHE) $(CROSS_COMPILE)$(CC) +LDQ = $(Q)echo -e " LD\t$@" && $(CCACHE) $(CROSS_COMPILE)$(CC) CCNQ = $(CCACHE) $(CROSS_COMPILE)$(CC) CCQ = $(Q)echo -e " CC\t$<" && $(CCNQ) ifeq ($(DEBUG), 1) -- cgit v1.2.3-54-g00ecf