summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/ChangeLog6
-rw-r--r--scripts/binutils/Makefile.am2
-rw-r--r--scripts/gccnewlib/Makefile.am2
-rw-r--r--scripts/gdb/Makefile.am2
4 files changed, 9 insertions, 3 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index aca36e21a6..0e5496a163 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * gdb/Makefile.am, gccnewlib/Makefile.am, binutils/Makefile.am:
+ Initially setup CLEANFILES using = instead of += to make
+ automake-1.5 happy.
+
2001-09-13 Joel Sherrill <joel@OARcorp.com>
* setup.def, gccnewlib/gccnewlib.add, gccnewlib/target-gcc.add:
diff --git a/scripts/binutils/Makefile.am b/scripts/binutils/Makefile.am
index 51501299e7..0e4453bdfb 100644
--- a/scripts/binutils/Makefile.am
+++ b/scripts/binutils/Makefile.am
@@ -11,7 +11,7 @@ SUBPACKAGES = binutils.add \
binutils.spec.in: $(SUBPACKAGES)
cat $^ > $@
-CLEANFILES += binutils.spec.in
+CLEANFILES = binutils.spec.in
MKBINUTILSSPEC_DEPS = $(top_builddir)/mkbinutilspec binutils.spec.in \
$(top_builddir)/setup.cache
diff --git a/scripts/gccnewlib/Makefile.am b/scripts/gccnewlib/Makefile.am
index 273d144b54..210c722ca6 100644
--- a/scripts/gccnewlib/Makefile.am
+++ b/scripts/gccnewlib/Makefile.am
@@ -16,7 +16,7 @@ SUBPACKAGES = gccnewlib.add \
gccnewlib.spec.in: $(SUBPACKAGES)
cat $^ \
| sed -e 's%@GCCLANGS@%%g' > $@
-CLEANFILES += gccnewlib.spec.in
+CLEANFILES = gccnewlib.spec.in
gccnewlib_c_only.spec.in: gccnewlib.add base-gcc.add target-gcc.add
cat $^ \
diff --git a/scripts/gdb/Makefile.am b/scripts/gdb/Makefile.am
index 319af77bb8..4cf6db85bd 100644
--- a/scripts/gdb/Makefile.am
+++ b/scripts/gdb/Makefile.am
@@ -10,7 +10,7 @@ SUBPACKAGES = gdb.add base-gdb.add target-gdb.add
gdb.spec.in: $(SUBPACKAGES)
cat $^ > $@
-CLEANFILES += gdb.spec.in
+CLEANFILES = gdb.spec.in
MKGDBSPEC_DEPS = $(top_builddir)/mkgdbspec gdb.spec.in \
$(top_builddir)/setup.cache