Skip to content

Commit

Permalink
configure: Enable silent rules.
Browse files Browse the repository at this point in the history
Configure has an option which supports quieter compilation.

Signed-off-by: Ethan Jackson <[email protected]>
Acked-by: Ben Pfaff <[email protected]>
Acked-by: Joe Stringer <[email protected]>
  • Loading branch information
ejj committed Jan 22, 2014
1 parent e740cdb commit 743f810
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion utilities/ovs-dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 743f810

Please sign in to comment.