Skip to content
Snippets Groups Projects
Commit bf9aa44b authored by Måns Rullgård's avatar Måns Rullgård
Browse files

Fix brief make messages when CC etc are specified on command line

Originally committed as revision 23792 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 95024414
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,8 @@ SILENT = DEPCC YASMDEP RM RANLIB ...@@ -26,8 +26,8 @@ SILENT = DEPCC YASMDEP RM RANLIB
MSG = $@ MSG = $@
M = @$(call ECHO,$(TAG),$@); M = @$(call ECHO,$(TAG),$@);
$(foreach VAR,$(BRIEF), \ $(foreach VAR,$(BRIEF), \
$(eval $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR)))) $(eval override $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR))))
$(foreach VAR,$(SILENT),$(eval $(VAR) = @$($(VAR)))) $(foreach VAR,$(SILENT),$(eval override $(VAR) = @$($(VAR))))
$(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_DIR)/%=%)); $(INSTALL)) $(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_DIR)/%=%)); $(INSTALL))
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment