From: Peter Powell Date: Thu, 31 Mar 2016 13:59:44 +0000 (+0100) Subject: Rename V to INSPIRCD_VERBOSE. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=be74a8c8d2555feff3fb1c41494d639f695e82c7;p=user%2Fhenk%2Fcode%2Finspircd.git Rename V to INSPIRCD_VERBOSE. --- diff --git a/make/template/main.mk b/make/template/main.mk index 73ebbd53e..8a4d8fb65 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -114,7 +114,7 @@ FOOTER = finishmessage @TARGET GNU_MAKE SOURCEPATH = $(shell /bin/pwd) @TARGET BSD_MAKE SOURCEPATH != /bin/pwd -@IFDEF V +@IFDEF INSPIRCD_VERBOSE VERBOSE = -v @ELSE @TARGET GNU_MAKE MAKEFLAGS += --silent @@ -301,11 +301,11 @@ help: @echo 'Use: ${MAKE} [flags] [targets]' @echo '' @echo 'Flags:' - @echo ' V=1 Show the full command being executed instead of "BUILD: dns.cpp"' + @echo ' INSPIRCD_VERBOSE=1 Show the full command being executed instead of "BUILD: dns.cpp"' @echo ' D=1 Enable debug build, for module development or crash tracing' @echo ' D=2 Enable debug build with optimizations, for detailed backtraces' - @echo ' DESTDIR= Specify a destination root directory (for tarball creation)' - @echo ' -j Run a parallel build using N jobs' + @echo ' DESTDIR= Specify a destination root directory (for tarball creation)' + @echo ' -j Run a parallel build using N jobs' @echo '' @echo 'Targets:' @echo ' all Complete build of InspIRCd, without installing (default)' diff --git a/tools/test-build b/tools/test-build index 146880fe6..212c16bb0 100755 --- a/tools/test-build +++ b/tools/test-build @@ -33,7 +33,7 @@ use warnings FATAL => qw(all); use make::common; use make::configure; -$ENV{D} = $ENV{V} = 1; +$ENV{D} = $ENV{INSPIRCD_VERBOSE} = 1; system 'git', 'clean', '-dfx';