aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:25:39 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:25:39 +0800
commit0963da8f8d447ae1cb1c89892cdf958fb847275e (patch)
tree09c04733d1812f056b1889b30cf4f058064983c5
parent8911460699f764a94975e85fb4bbff6d39d57dec (diff)
downloadgsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar
gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.gz
gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.bz2
gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.lz
gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.xz
gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.zst
gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.zip
[Automake 1.5 fixes pointed out by Richard Boulton
<richard@tartarus.org>, as per #9258.] * cal-client/Makefile.am: Set CLEANFILES directly instead of using `+='. svn path=/trunk/; revision=12841
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/cal-client/Makefile.am2
-rw-r--r--calendar/gui/Makefile.am2
-rw-r--r--calendar/gui/alarm-notify/Makefile.am2
4 files changed, 11 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b2ea83585a..beeabf8e49 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2001-09-14 Ettore Perazzoli <ettore@ximian.com>
+
+ [Automake 1.5 fixes pointed out by Richard Boulton
+ <richard@tartarus.org>, as per #9258.]
+
+ * cal-client/Makefile.am: Set CLEANFILES directly instead of using
+ `+='.
+
2001-09-14 Damon Chaplin <damon@ximian.com>
* gui/e-itip-control.c (ok_clicked_cb): added space after 'identities'
diff --git a/calendar/cal-client/Makefile.am b/calendar/cal-client/Makefile.am
index e7b32ca973..e910aa9610 100644
--- a/calendar/cal-client/Makefile.am
+++ b/calendar/cal-client/Makefile.am
@@ -83,7 +83,7 @@ client_test_LDADD = \
libcal-client.la
BUILT_SOURCES = $(CORBA_GENERATED)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am
index 2db2c26ced..e7643167ca 100644
--- a/calendar/gui/Makefile.am
+++ b/calendar/gui/Makefile.am
@@ -189,7 +189,7 @@ evolution-calendar.pure: evolution-calendar
endif
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
diff --git a/calendar/gui/alarm-notify/Makefile.am b/calendar/gui/alarm-notify/Makefile.am
index 4176a71685..eef2e6abcc 100644
--- a/calendar/gui/alarm-notify/Makefile.am
+++ b/calendar/gui/alarm-notify/Makefile.am
@@ -82,4 +82,4 @@ EXTRA_DIST = \
$(glade_DATA)
BUILT_SOURCES = $(CORBA_GENERATED)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)