]> xenbits.xensource.com Git - people/jgross/xen.git/commitdiff
tools/ocaml: Default to useful build output
authorElliott Mitchell <ehem+xen@m5p.com>
Sat, 18 Jul 2020 03:32:42 +0000 (20:32 -0700)
committerWei Liu <wl@xen.org>
Tue, 21 Jul 2020 14:49:36 +0000 (14:49 +0000)
While hiding details of build output looks pretty to some, defaulting to
doing so deviates from the rest of Xen.  Switch the OCAML tools to match
everything else.

Signed-off-by: Elliott Mitchell <ehem+xen@m5p.com>
Acked-by: Christian Lindig <christian.lindig@citrix.com>
tools/ocaml/Makefile.rules

index a893c42b437899c022711307420dbc083c9e9fe9..abfbc64ce062bf40f9b4a3608cd266eb4e0f3dc7 100644 (file)
@@ -1,17 +1,20 @@
 ifdef V
-  ifeq ("$(origin V)", "command line")
-    BUILD_VERBOSE = $(V)
-  endif
+       ifeq ("$(origin V)", "command line")
+               BUILD_VERBOSE = $(V)
+       endif
+else
+       V := 1
+       BUILD_VERBOSE := 1
 endif
 ifndef BUILD_VERBOSE
-  BUILD_VERBOSE = 0
+       BUILD_VERBOSE := 0
 endif
 ifeq ($(BUILD_VERBOSE),1)
-  = @true
-  =
+       E := @true
+       Q :=
 else
-  = @echo
-  = @
+       E := @echo
+       Q := @
 endif
 
 .NOTPARALLEL: