vagrant: Enable silent-rules for configure.
authorJoe Stringer <joe@ovn.org>
Fri, 20 May 2016 18:49:59 +0000 (11:49 -0700)
committerJoe Stringer <joe@ovn.org>
Thu, 26 May 2016 00:40:13 +0000 (17:40 -0700)
In the majority of cases, developers debugging their code using vagrant
will be more interested in compiler errors/warnings than the exact
invocation of the compiler. By enabling silent-rules, the verbosity of
compilation is lowered and it is easier to identify these pieces of
information.

Signed-off-by: Joe Stringer <joe@ovn.org>
Acked-by: Andy Zhou <azhou@ovn.org>
Acked-by: Ryan Moats <rmoats@us.ibm.com>
Vagrantfile

index 69c1dea..3557095 100644 (file)
@@ -20,7 +20,7 @@ SCRIPT
 $configure_ovs = <<SCRIPT
 mkdir -p ~/build
 cd ~/build
-/vagrant/configure --with-linux=/lib/modules/`uname -r`/build
+/vagrant/configure --with-linux=/lib/modules/`uname -r`/build --enable-silent-rules
 SCRIPT
 
 $build_ovs = <<SCRIPT