summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cmds2
-rw-r--r--Makefile2
2 files changed, 2 insertions, 2 deletions
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)
diff --git a/Makefile b/Makefile
index 082737c..cf6c9bc 100644
--- a/Makefile
+++ b/Makefile
@@ -177,5 +177,5 @@ $(foreach tool,$(TOOLS),$(eval $(call TOOL_templ,$(tool))))
%:: ;
$(TOOLS):
- $(LD) $(LDFLAGS) -o $@/$@ $@/*.o $($@-libs)
+ $(LDQ) $(LDFLAGS) -o $@/$@ $@/*.o $($@-libs)
$(STRIP) $@/$@