Add option to configure verbosity of check in commandline: "VERBOSE=1 make check"
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2114 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
85b8153dfc
commit
1431deba81
|
@ -3,7 +3,7 @@
|
|||
use strict;
|
||||
|
||||
use Test::Harness qw(&runtests $verbose);
|
||||
$verbose=0;
|
||||
$verbose = (defined $ENV{'VERBOSE'} ? $ENV{'VERBOSE'} : 0);;
|
||||
|
||||
my $srcdir = (defined $ENV{'srcdir'} ? $ENV{'srcdir'} : '.');
|
||||
|
||||
|
|
Loading…
Reference in New Issue