summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-11-18 19:05:56 +0000
committerAndrew Cagney <cagney@redhat.com>2001-11-18 19:05:56 +0000
commit25663507637e5ef495bcb40c37964948d35a6f55 (patch)
treefd811a0e95375851e3302d79ec7ddc5c1be5baf6
parentc874e8fe730c4c25f5dc2807d43e66512a58b4f8 (diff)
downloadbinutils-redhat-gdb_5_1_0_1-2002-01-03-branch.tar.gz
BLD-POTFILES.in. Work around bug in BFD's distclean.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/po/Make-in8
2 files changed, 12 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 4a74e5f7c9..b6d65405d5 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-18 Andrew Cagney <ac131313@redhat.com>
+
+ * po/Make-in (distclean): Don't delete SRC-POTFILES.in or
+ BLD-POTFILES.in. Work around bug in BFD's distclean.
+
2001-10-30 Andrew Cagney <ac131313@redhat.com>
* configure, op/SRC-POTFILES.in, po/bfd.pot: Regenerate.
diff --git a/bfd/po/Make-in b/bfd/po/Make-in
index 2414748d74..15590f4afa 100644
--- a/bfd/po/Make-in
+++ b/bfd/po/Make-in
@@ -203,9 +203,15 @@ mostlyclean:
clean: mostlyclean
+# FIXME: cagney/2001-11-18: When configuring / building in the source
+# directory, the rule below would delete SRC-POTFILES.in and
+# BLD-POTFILES.in from that source directory. While a make rebuilds
+# these files it also puts them in the source directory and that can
+# be read-only.
+
distclean: clean
rm -f Makefile Makefile.in *.mo *.msg *.cat *.cat.m
- rm -f SRC-POTFILES BLD-POTFILES SRC-POTFILES.in BLD-POTFILES.in
+ rm -f SRC-POTFILES BLD-POTFILES
maintainer-clean: distclean
@echo "This command is intended for maintainers to use;"