From: Ethan Jackson Date: Wed, 22 Jan 2014 00:22:08 +0000 (-0800) Subject: configure: Enable silent rules. X-Git-Tag: sliver-openvswitch-2.1.90-1~8^2~44 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=743f8109720433800a4f4a8fb5b87aee73011778 configure: Enable silent rules. Configure has an option which supports quieter compilation. Signed-off-by: Ethan Jackson Acked-by: Ben Pfaff Acked-by: Joe Stringer --- diff --git a/configure.ac b/configure.ac index 9b6c69ef5..19c095ee9 100644 --- a/configure.ac +++ b/configure.ac @@ -137,4 +137,6 @@ if test "$HAVE_NETLINK" = yes && test "$ESX" = no; then AC_DEFINE([LINUX_DATAPATH], [1], [System uses the linux datapath module.]) fi +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) + AC_OUTPUT diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py index 1759cfdd2..e8280ffd6 100755 --- a/utilities/ovs-dev.py +++ b/utilities/ovs-dev.py @@ -63,7 +63,7 @@ def conf(): configure = ["../configure", "--prefix=" + ROOT, "--localstatedir=" + ROOT, "--with-logdir=%s/log" % ROOT, "--with-rundir=%s/run" % ROOT, "--with-linux=/lib/modules/%s/build" % uname(), - "--with-dbdir=" + ROOT, "--silent"] + "--enable-silent-rules", "--with-dbdir=" + ROOT, "--silent"] if options.werror: configure.append("--enable-Werror")