aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog9
-rw-r--r--shell/Makefile.am2
-rw-r--r--shell/importer/Makefile.am2
3 files changed, 11 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index da27e9bd3a..7e52e7911d 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,14 @@
2001-09-14 Ettore Perazzoli <ettore@ximian.com>
+ [Automake 1.5 fixes pointed out by Richard Boulton
+ <richard@tartarus.org>, as per #9258.]
+
+ * importer/Makefile.am (CLEANFILES): Assign directly using `=',
+ instead of `+='.
+ * Makefile.am (CLEANFILES): Likewise.
+
+2001-09-14 Ettore Perazzoli <ettore@ximian.com>
+
* e-shell.c (impl_Shell_getLocalStorage): Return a proper value.
(impl_Shell_createStorageSetView): Likewise.
(impl_Shell_setLineStatus): Likewise.
diff --git a/shell/Makefile.am b/shell/Makefile.am
index 56228bdd72..8829330db2 100644
--- a/shell/Makefile.am
+++ b/shell/Makefile.am
@@ -236,7 +236,7 @@ evolution.pure: evolution
endif
-CLEANFILES += $(IDL_GENERATED)
+CLEANFILES = $(IDL_GENERATED)
BUILT_SOURCES = $(IDL_GENERATED)
dist-hook:
diff --git a/shell/importer/Makefile.am b/shell/importer/Makefile.am
index f4a4b532a7..496a53da3f 100644
--- a/shell/importer/Makefile.am
+++ b/shell/importer/Makefile.am
@@ -56,7 +56,7 @@ glade_DATA = import.glade
EXTRA_DIST = $(glade_DATA) $(IDLS)
BUILT_SOURCES=$(IDL_GENERATED)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)