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
commitc83e6aba5de42775b4a3217f8943bbf07218bd5f (patch)
treeca7cee67928af339db418d0cc13c6ea1f9f23172
parentc2f42abc967750a725278bb5703f4fee8dd24aa4 (diff)
downloadgdb-c83e6aba5de42775b4a3217f8943bbf07218bd5f.tar.gz
* po/Make-in (distclean): Don't delete SRC-POTFILES.in or
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 4a74e5f7c9e..b6d65405d51 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 2414748d744..15590f4afa0 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;"