diff options
author | Josh Stone <jistone@redhat.com> | 2009-10-22 14:37:05 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-10-22 14:37:05 -0700 |
commit | 618a8a634b37da88b67a49beec7282634bff3efe (patch) | |
tree | a523e413dc27093d93ca33ad70444b677f9c266f /configure.ac | |
parent | 712d12ca4c74b824e7afbb273c0975eb0a30847c (diff) | |
download | systemtap-steved-618a8a634b37da88b67a49beec7282634bff3efe.tar.gz systemtap-steved-618a8a634b37da88b67a49beec7282634bff3efe.tar.xz systemtap-steved-618a8a634b37da88b67a49beec7282634bff3efe.zip |
Enable Kbuild-like quiet builds
This enables much cleaner build output from automake. To re-enable the
verbose commands, pass --disable-silent-rules to configure, or use V=1
at make time.
* configure.ac: Enable AM_SILENT_RULES by default.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index b088e84a..b1879fdd 100644 --- a/configure.ac +++ b/configure.ac @@ -8,6 +8,8 @@ AC_PREREQ(2.59) AM_INIT_AUTOMAKE AM_MAINTAINER_MODE +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + AM_PROG_MKDIR_P AC_SUBST(MKDIR_P) AC_PROG_LN_S |