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:
Stefan Bühler 2008-03-02 12:59:36 +00:00
parent 85b8153dfc
commit 1431deba81
1 changed files with 1 additions and 1 deletions

View File

@ -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'} : '.');