diff options
author | Måns Rullgård | 2010-03-17 14:43:03 +0000 |
---|---|---|
committer | Måns Rullgård | 2010-03-17 14:43:03 +0000 |
commit | de5aba8ccaa3abb870eb4d99f1bbbab38321c5f7 (patch) | |
tree | 8479e8b7c2ec78c90b26e98503733c8979125b15 /common.mak | |
parent | 57937d6195f67f12872e6b954a45a8bc0f55b448 (diff) |
Make ranlib silent in brief output mode
Running ranlib is quick and uninteresting, no need to print it.
Originally committed as revision 22582 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mak b/common.mak index 908d0e5f34..25a5d81b62 100644 --- a/common.mak +++ b/common.mak @@ -21,8 +21,8 @@ endif ifndef V Q = @ ECHO = printf "$(1)\t%s\n" $(2) -BRIEF = CC AS YASM AR LD HOSTCC RANLIB STRIP CP -SILENT = DEPCC YASMDEP RM +BRIEF = CC AS YASM AR LD HOSTCC STRIP CP +SILENT = DEPCC YASMDEP RM RANLIB MSG = $@ M = @$(call ECHO,$(TAG),$@); $(foreach VAR,$(BRIEF), \ |