Re: [PATCH] Makefile: quiet shell commands when "make --silent"

2012-09-10 Thread Pete Wyckoff
gits...@pobox.com wrote on Sun, 09 Sep 2012 17:35 -0700: > Pete Wyckoff writes: > > > Option "--silent", "--quiet" or "-s" to make prevents > > echoing of commands as they are executed. However, there > > are some explicit "echo" commands in the Makefile and in > > the two GIT-VERSION-GEN script

Re: [PATCH] Makefile: quiet shell commands when "make --silent"

2012-09-09 Thread Junio C Hamano
Pete Wyckoff writes: > Option "--silent", "--quiet" or "-s" to make prevents > echoing of commands as they are executed. However, there > are some explicit "echo" commands in the Makefile and in > the two GIT-VERSION-GEN scripts that always echo. "make -s clean"? I am not very enthused, especi

[PATCH] Makefile: quiet shell commands when "make --silent"

2012-09-09 Thread Pete Wyckoff
Option "--silent", "--quiet" or "-s" to make prevents echoing of commands as they are executed. However, there are some explicit "echo" commands in the Makefile and in the two GIT-VERSION-GEN scripts that always echo. Quiet the explicit "echo"s in Makefile when MAKEFLAG "s" is set. Pass this inf