summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorJoe Stringer <joe@ovn.org>2016-05-20 11:49:59 -0700
committerJoe Stringer <joe@ovn.org>2016-05-25 17:40:13 -0700
commit1a523ec4fb50be3c887e3cdd0ae8b7bf6b4187e6 (patch)
tree6e50d6d9b35de9d042b20573a871619d164b702b /Vagrantfile
parent53de7528be8edb9de83532d6b129f9124485eabd (diff)
downloadopenvswitch-1a523ec4fb50be3c887e3cdd0ae8b7bf6b4187e6.tar.gz
vagrant: Enable silent-rules for configure.
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>
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 69c1deaef..3557095a2 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -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