configure: Enable silent rules.
authorEthan Jackson <ethan@nicira.com>
Wed, 22 Jan 2014 00:22:08 +0000 (16:22 -0800)
committerEthan Jackson <ethan@nicira.com>
Wed, 22 Jan 2014 18:40:28 +0000 (10:40 -0800)
Configure has an option which supports quieter compilation.

Signed-off-by: Ethan Jackson <ethan@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
Acked-by: Joe Stringer <joestringer@nicira.com>
configure.ac
utilities/ovs-dev.py

index 9b6c69e..19c095e 100644 (file)
@@ -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
index 1759cfd..e8280ff 100755 (executable)
@@ -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")