]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Rename V to INSPIRCD_VERBOSE.
authorPeter Powell <petpow@saberuk.com>
Thu, 31 Mar 2016 13:59:44 +0000 (14:59 +0100)
committerPeter Powell <petpow@saberuk.com>
Mon, 4 Apr 2016 12:20:21 +0000 (13:20 +0100)
make/template/main.mk
tools/test-build

index 73ebbd53e98d654b9e774db3c4de0a26b4f10af8..8a4d8fb653ac4642e34ab661e06b93d46878540f 100644 (file)
@@ -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 <N>    Run a parallel build using N jobs'
+       @echo ' DESTDIR=            Specify a destination root directory (for tarball creation)'
+       @echo ' -j <N>              Run a parallel build using N jobs'
        @echo ''
        @echo 'Targets:'
        @echo ' all       Complete build of InspIRCd, without installing (default)'
index 146880fe66cedec25186905fc87a0928b96a8f23..212c16bb0196c03fcad824eee1c47c2f39cd1ae6 100755 (executable)
@@ -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';