Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2-0]: src/sys/arch Pull up revision 1.9 (requested by jmc in tick...



details:   https://anonhg.NetBSD.org/src/rev/7455d9ae3eba
branches:  netbsd-2-0
changeset: 561560:7455d9ae3eba
user:      tron <tron%NetBSD.org@localhost>
date:      Tue Jun 22 07:55:23 2004 +0000

description:
Pull up revision 1.9 (requested by jmc in ticket #531):
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:

 sys/arch/hpcmips/stand/Makefile        |  4 ++--
 sys/arch/mipsco/stand/Makefile.booters |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 8a7ba024180d -r 7455d9ae3eba sys/arch/hpcmips/stand/Makefile
--- a/sys/arch/hpcmips/stand/Makefile   Tue Jun 22 07:55:00 2004 +0000
+++ b/sys/arch/hpcmips/stand/Makefile   Tue Jun 22 07:55:23 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2003/10/26 07:25:36 lukem Exp $
+# $NetBSD: Makefile,v 1.8.2.1 2004/06/22 07:55:23 tron Exp $
 #
 # Makefile to generate windows VC++ project and workspace files from
 # config files and templates
@@ -32,7 +32,7 @@
 
 clean:
        rm -f hpcmips_stand.ncb
-       for dir in $(PROJECT_DIRS); do \
+       -for dir in $(PROJECT_DIRS); do \
            (cd $$dir && rm -rf WMIPSDbg wmipsdbg WMIPSRel wmipsrel); \
            (cd $$dir && rm -f $$dir.plg $$dir.vcl $$dir.[0-9][0-9][0-9]); \
            (cd $$dir && rm -f $$dir.ncb $$dir.opt); \
diff -r 8a7ba024180d -r 7455d9ae3eba sys/arch/mipsco/stand/Makefile.booters
--- a/sys/arch/mipsco/stand/Makefile.booters    Tue Jun 22 07:55:00 2004 +0000
+++ b/sys/arch/mipsco/stand/Makefile.booters    Tue Jun 22 07:55:23 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.booters,v 1.8 2004/03/08 05:00:02 simonb Exp $
+#      $NetBSD: Makefile.booters,v 1.8.2.1 2004/06/22 07:55:23 tron Exp $
 
 .include <bsd.sys.mk>          # for HOST_SH
 
@@ -139,7 +139,7 @@
 cleandir distclean: cleanlibdir
 
 cleanlibdir:
-       rm -rf lib
+       -rm -rf lib
 
 .include <bsd.prog.mk>
 



Home | Main Index | Thread Index | Old Index