diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-03-06 02:09:14 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-06 00:48:13 -0800 |
commit | 2314c947706b9480ddd8c1420efa8da523d99c9f (patch) | |
tree | 87448f09bbe2f85a14b2a72872779dcd813b46ab /perl | |
parent | 74f2b2a8d006a49e1be7e30731c2f7365d2741d1 (diff) | |
download | git-2314c947706b9480ddd8c1420efa8da523d99c9f.tar.gz |
Make 'make' quiet by default
Per Junio's suggestion we are setting 'make' to be quiet by default,
with `make V=1` available to force GNU make back to its default
behavior of showing each command it is running.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Makefile b/perl/Makefile index 2fceff2791..17d004e5a0 100644 --- a/perl/Makefile +++ b/perl/Makefile @@ -6,7 +6,7 @@ makfile:=perl.mak PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH)) prefix_SQ = $(subst ','\'',$(prefix)) -ifdef QUIET_MAKE +ifndef V QUIET = @ endif |