[Libvir] [PATCH] Avoid "make distcheck" failure.

Here's another trivial one: util-lib.h wasn't included in the tarball created by "make dist", so "make distcheck" would fail. Avoid "make distcheck" failure. * src/Makefile.am (virsh_SOURCES): Add util-lib.h. Signed-off-by: Jim Meyering <meyering@redhat.com> --- src/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 02be9db..9c4810a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -101,7 +101,7 @@ libvirt_la_CFLAGS = $(COVERAGE_CFLAGS) -DIN_LIBVIRT bin_PROGRAMS = virsh -virsh_SOURCES = virsh.c console.c console.h util-lib.c +virsh_SOURCES = virsh.c console.c console.h util-lib.c util-lib.h virsh_LDFLAGS = $(WARN_CFLAGS) $(COVERAGE_LDFLAGS) virsh_DEPENDENCIES = $(DEPS) virsh_LDADD = $(LDADDS) $(VIRSH_LIBS) -- 1.5.4.3.231.gc0a6

On Wed, Feb 27, 2008 at 04:11:19PM +0100, Jim Meyering wrote:
Here's another trivial one: util-lib.h wasn't included in the tarball created by "make dist", so "make distcheck" would fail.
Avoid "make distcheck" failure. * src/Makefile.am (virsh_SOURCES): Add util-lib.h.
sure, +1, Daniel -- Red Hat Virtualization group http://redhat.com/virtualization/ Daniel Veillard | virtualization library http://libvirt.org/ veillard@redhat.com | libxml GNOME XML XSLT toolkit http://xmlsoft.org/ http://veillard.com/ | Rpmfind RPM search engine http://rpmfind.net/
participants (2)
-
Daniel Veillard
-
Jim Meyering