From 95d93536f8c036f5ba8815344930a8a03af5190a Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Thu, 26 Mar 2009 15:10:09 +0100 Subject: Generate .tar.bz2 on 'make dist' Automatically generate libcgroup*.tar.bz2 on 'make dist'. Some restructure of AC_INIT and AM_INIT was needed to archieve this and correct output filename. Namely AC_INIT( [package], ... ) is used as resulting tarball file name now. Also run automake and autoconf to refresh the generated stuff... Only configure.in contains manual changes, everything else is autoconf/automake bloat :(. Signed-off-by: Jan Safranek --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index c0ab521..0d82f96 100644 --- a/configure.in +++ b/configure.in @@ -15,9 +15,9 @@ AC_PREREQ(2.61) # In following section update all occurences of version, including soname -AC_INIT([control groups library and utilities], 0.34, +AC_INIT([libcgroup], 0.34, [http://sourceforge.net/tracker/?group_id=218421&atid=1043649]) -AM_INIT_AUTOMAKE(libcgroup, 0.34) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) # set library version, soname is libcgroup.so.MAJOR AC_SUBST(LIBRARY_VERSION_MAJOR, 1) AC_SUBST(LIBRARY_VERSION_MINOR, 0) -- cgit