[libvirt] [PATCH] build: avoid non-srcdir "make distcheck" failures (CLEANFILES)

A quick review won't hurt, but this doesn't really need one.
From 9ac893a1342b31ef7df6fc57c03767c49ef98d5b Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Thu, 25 Feb 2010 09:28:51 +0100 Subject: [PATCH 1/4] build: avoid non-srcdir "make distcheck" failures (CLEANFILES)
* docs/Makefile.am (MAINTAINERCLEANFILES): Use this variable for generated-and-distributed files, not "CLEANFILES". Besides, "make clean" and "make distclean" should not delete distributed files. --- docs/Makefile.am | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 07ea9bf..dbbd1ef 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -17,7 +17,7 @@ apipng = \ html/home.png \ html/right.png -devhelphtml = \ +devhelphtml = \ devhelp/libvirt.devhelp \ devhelp/index.html \ devhelp/general.html \ @@ -79,7 +79,7 @@ EXTRA_DIST= \ sitemap.html.in \ ChangeLog.awk -CLEANFILES = $(dot_html) $(apihtml) $(devhelphtml) +MAINTAINERCLEANFILES = $(dot_html) $(apihtml) $(devhelphtml) all: web -- 1.7.0.401.g84adb

According to Jim Meyering on 2/25/2010 5:46 AM:
A quick review won't hurt, but this doesn't really need one.
* docs/Makefile.am (MAINTAINERCLEANFILES): Use this variable for generated-and-distributed files, not "CLEANFILES".
Needed or not, ACK - this is the right change. -- Eric Blake eblake@redhat.com +1-801-349-2682 Libvirt virtualization library http://libvirt.org
participants (2)
-
Eric Blake
-
Jim Meyering