aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:34:04 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:34:04 +0800
commitd982c738d929375a597471aab7716301799f3414 (patch)
tree8c8a6c51de07a3120e1773853862629742288be7
parent8eac276f02695423a3f7da9c51d77f14cf5c87a3 (diff)
downloadgsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.tar
gsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.tar.gz
gsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.tar.bz2
gsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.tar.lz
gsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.tar.xz
gsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.tar.zst
gsoc2013-evolution-d982c738d929375a597471aab7716301799f3414.zip
[Automake 1.5 fixes pointed out by Richard Boulton
<richard@tartarus.org>, as per #9258.] * executive-summary/component/Makefile.am (CLEANFILE): Assign directly with `=', not `+='. * executive-summary/evolution-services/Makefile.am: Likewise. svn path=/trunk/; revision=12845
-rw-r--r--executive-summary/ChangeLog9
-rw-r--r--executive-summary/component/Makefile.am2
-rw-r--r--executive-summary/evolution-services/Makefile.am2
3 files changed, 11 insertions, 2 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog
index 2cbf08dc1d..3ab48d9509 100644
--- a/executive-summary/ChangeLog
+++ b/executive-summary/ChangeLog
@@ -1,3 +1,12 @@
+2001-09-14 Ettore Perazzoli <ettore@ximian.com>
+
+ [Automake 1.5 fixes pointed out by Richard Boulton
+ <richard@tartarus.org>, as per #9258.]
+
+ * executive-summary/component/Makefile.am (CLEANFILE): Assign
+ directly with `=', not `+='.
+ * executive-summary/evolution-services/Makefile.am: Likewise.
+
2001-07-21 Ettore Perazzoli <ettore@ximian.com>
* component/component-factory.c: Make the "executive-summary"
diff --git a/executive-summary/component/Makefile.am b/executive-summary/component/Makefile.am
index 1db01fed36..870746bf1e 100644
--- a/executive-summary/component/Makefile.am
+++ b/executive-summary/component/Makefile.am
@@ -81,7 +81,7 @@ evolution-executive-summary.pure: evolution-executive-summary
endif
EXTRA_DIST = $(glade_DATA)
-CLEANFILES += $(COMPOSER_GENERATED)
+CLEANFILES = $(COMPOSER_GENERATED)
BUILT_SOURCES = $(COMPOSER_GENERATED)
dist-hook:
diff --git a/executive-summary/evolution-services/Makefile.am b/executive-summary/evolution-services/Makefile.am
index 5ffc39d70d..e371b0ddf4 100644
--- a/executive-summary/evolution-services/Makefile.am
+++ b/executive-summary/evolution-services/Makefile.am
@@ -49,7 +49,7 @@ libevolution_services_la_LIBADD = \
$(GTKHTML_LIBS)
BUILT_SOURCES = $(IDL_GENERATED)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)