From: Lennart Poettering Date: Wed, 24 Mar 2010 14:51:38 +0000 (+0100) Subject: build-sys: enable silent build by default X-Git-Tag: v0.36~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1b4959d35fa011d55e3a676be355d9ed3a100c;p=thirdparty%2Flibcgroup.git build-sys: enable silent build by default Make the automake output a bit more like the kbuild output if supported. Signed-off-by: Lennart Poettering Signed-off-by: Dhaval Giani --- diff --git a/configure.in b/configure.in index c145a892..7cd497bc 100644 --- a/configure.in +++ b/configure.in @@ -1,13 +1,13 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -# +# # Copyright International Business Machines Corp. 2008 -# +# # Authors: Balbir Singh # This program is free software; you can redistribute it and/or modify it # under the terms of version 2.1 of the GNU Lesser General Public License # as published by the Free Software Foundation. -# +# # This program is distributed in the hope that it would be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -18,6 +18,9 @@ AC_PREREQ(2.61) AC_INIT([libcgroup], 0.36.rc1, [http://sourceforge.net/tracker/?group_id=218421&atid=1043649]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + # set library version, soname is libcgroup.so.MAJOR AC_SUBST(LIBRARY_VERSION_MAJOR, 1) AC_SUBST(LIBRARY_VERSION_MINOR, 0)