summaryrefslogtreecommitdiff
path: root/tools/Makefile.gnuhost
diff options
context:
space:
mode:
authorjmc <jmc@NetBSD.org>2004-06-21 18:20:08 +0000
committerjmc <jmc@NetBSD.org>2004-06-21 18:20:08 +0000
commit84fafa3db5bde5b679f152ae36701c896ea245d8 (patch)
treeb103ddd541348aab4dca7677b1cf82358ac46543 /tools/Makefile.gnuhost
parent5e420ba7725ee9996786fb4af7bc4d344204e8ba (diff)
Ignore errors on some rm -rf's for platforms that aren't quite
POSIX compliant and return errors on r/o source (FreeBSD) for -rf. Fixes PR#25022
Diffstat (limited to 'tools/Makefile.gnuhost')
-rw-r--r--tools/Makefile.gnuhost4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.gnuhost b/tools/Makefile.gnuhost
index fba9ca5f424..fd7c030a257 100644
--- a/tools/Makefile.gnuhost
+++ b/tools/Makefile.gnuhost
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.gnuhost,v 1.28 2004/06/20 23:12:40 jmc Exp $
+# $NetBSD: Makefile.gnuhost,v 1.29 2004/06/21 18:20:09 jmc Exp $
#
# Rules used when building a GNU host package. Expects MODULE to be set.
#
@@ -108,6 +108,6 @@ realinstall: .install_done
clean: clean.gnu
clean.gnu:
- rm -r -f .*_done build
+ -rm -r -f .*_done build
.include <bsd.hostprog.mk>