Arjun Roy wrote: > I have merged in the patchset you sent me.. Thanks. Here are two more small changes:
The first it to address this: libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. >From 0debff3962ad8512e84e33783f737604e122a68b Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Wed, 3 Feb 2010 21:40:01 +0100 Subject: [PATCH 1/2] build: define ACLOCAL_AMFLAGS to -I m4 * Makefile.am (ACLOCAL_AMFLAGS): Define, on advice from libtoolize. --- Makefile.am | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile.am b/Makefile.am index abfa713..e143951 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,5 @@ +ACLOCAL_AMFLAGS = -I m4 AM_CPPFLAGS = -I$(top_srcdir)/inc $(LIBXML_CFLAGS) libosinfo_la_LDFLAGS = $(LIBXML_LIBS) -- 1.7.0.rc1.193.ge8618 >From d729d3effa4450ec7fe5f9a792eb403263e6ec5c Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Wed, 3 Feb 2010 21:41:11 +0100 Subject: [PATCH 2/2] build: autogen.sh is just "autoreconf -i" * autogen.sh: Replace contents with semantically equivalent, yet more efficient, "autoreconf -i". --- autogen.sh | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index 74f5bc3..68f4a17 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,2 @@ #!/bin/sh -libtoolize -aclocal -autoheader -autoconf -automake --add-missing +autoreconf -i -- 1.7.0.rc1.193.ge8618 _______________________________________________ virt-tools-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/virt-tools-list
