diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2014-08-01 12:32:31 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-08-05 10:31:28 +0800 |
commit | d1f814a1e310b5c1e6b32d5bdbf7b7450c221325 (patch) | |
tree | 43d51d4fcec08c5819fb7ab7b1ca1e9cff8fab3f /configure.ac | |
parent | d1c07faf5b5979c19c4709f7195c612fb0a9dd2e (diff) | |
download | petitboot-d1f814a1e310b5c1e6b32d5bdbf7b7450c221325.zip petitboot-d1f814a1e310b5c1e6b32d5bdbf7b7450c221325.tar.gz |
automake: silence make output
Currently, we get a lot of noise out of the build process; automake
supports V={0,1}, which we can use to suppress the output a little.
This needs a few cleanups for custom commands.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
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 9511fef..b540819 100644 --- a/configure.ac +++ b/configure.ac @@ -35,6 +35,8 @@ AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION(0.18.1) LT_INIT +AM_SILENT_RULES([yes]) + AX_WITH_CURSES AX_WITH_CURSES_MENU AX_WITH_CURSES_FORM |