summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-06-26 10:03:30 +0000
committerMåns Rullgård <mans@mansr.com>2010-06-26 10:03:30 +0000
commitbf9aa44bf48a0bbec202e972343f86e39052439e (patch)
tree6f5bd3b1cb3dd07e6eccc03ba07384a78e7bffd9 /common.mak
parent950244140821bc3d9c37a3f772398b0461ce400f (diff)
Fix brief make messages when CC etc are specified on command line
Originally committed as revision 23792 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mak b/common.mak
index 25a5d81b62..d4eda1b4f2 100644
--- a/common.mak
+++ b/common.mak
@@ -26,8 +26,8 @@ SILENT = DEPCC YASMDEP RM RANLIB
MSG = $@
M = @$(call ECHO,$(TAG),$@);
$(foreach VAR,$(BRIEF), \
- $(eval $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR))))
-$(foreach VAR,$(SILENT),$(eval $(VAR) = @$($(VAR))))
+ $(eval override $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR))))
+$(foreach VAR,$(SILENT),$(eval override $(VAR) = @$($(VAR))))
$(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_DIR)/%=%)); $(INSTALL))
endif