aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:32:16 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:32:16 +0800
commit8eac276f02695423a3f7da9c51d77f14cf5c87a3 (patch)
tree153cd749c97108c3b85d92c4aaf2eee71c60286c
parent1784f9d02ba94d1f2ecca7557c13b4bf77d01d77 (diff)
downloadgsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.tar
gsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.tar.gz
gsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.tar.bz2
gsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.tar.lz
gsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.tar.xz
gsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.tar.zst
gsoc2013-evolution-8eac276f02695423a3f7da9c51d77f14cf5c87a3.zip
[Automake 1.5 fixes pointed out by Richard Boulton
<richard@tartarus.org>, as per #9258.] * Makefile.am (CLEANFILES): Set directly with `=' instead of `+='. svn path=/trunk/; revision=12844
-rw-r--r--composer/ChangeLog7
-rw-r--r--composer/Makefile.am2
2 files changed, 8 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 41b01edab5..6e11fee62e 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-14 Ettore Perazzoli <ettore@ximian.com>
+
+ [Automake 1.5 fixes pointed out by Richard Boulton
+ <richard@tartarus.org>, as per #9258.]
+
+ * Makefile.am (CLEANFILES): Set directly with `=' instead of `+='.
+
2001-09-13 Larry Ewing <lewing@ximian.com>
* e-msg-composer.c (map_default_cb): free the text values we get
diff --git a/composer/Makefile.am b/composer/Makefile.am
index 25f46a2df3..9d0fe90ffc 100644
--- a/composer/Makefile.am
+++ b/composer/Makefile.am
@@ -90,7 +90,7 @@ EXTRA_DIST = \
bad-icon.xpm
BUILT_SOURCES = $(IDL_GENERATED) $(HTML_EDITOR_GENERATED)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)