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.5 (requested by jmc in tick...



details:   https://anonhg.NetBSD.org/src/rev/90907fa10072
branches:  netbsd-2-0
changeset: 561555:90907fa10072
user:      tron <tron%NetBSD.org@localhost>
date:      Tue Jun 22 07:53:35 2004 +0000

description:
Pull up revision 1.5 (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/sbmips/stand/Makefile.bootprogs |  4 ++--
 sys/arch/xen/conf/Makefile.xen           |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (33 lines):

diff -r 3af0e26798c6 -r 90907fa10072 sys/arch/sbmips/stand/Makefile.bootprogs
--- a/sys/arch/sbmips/stand/Makefile.bootprogs  Tue Jun 22 07:53:13 2004 +0000
+++ b/sys/arch/sbmips/stand/Makefile.bootprogs  Tue Jun 22 07:53:35 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.bootprogs,v 1.4 2003/10/26 07:25:37 lukem Exp $
+# $NetBSD: Makefile.bootprogs,v 1.4.2.1 2004/06/22 07:53:35 tron Exp $
 
 .include <bsd.sys.mk>          # for HOST_SH
 
@@ -148,4 +148,4 @@
 
 cleandir: cleandirlocal
 cleandirlocal:
-       rm -rf lib
+       -rm -rf lib
diff -r 3af0e26798c6 -r 90907fa10072 sys/arch/xen/conf/Makefile.xen
--- a/sys/arch/xen/conf/Makefile.xen    Tue Jun 22 07:53:13 2004 +0000
+++ b/sys/arch/xen/conf/Makefile.xen    Tue Jun 22 07:53:35 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.xen,v 1.1.2.1 2004/05/22 15:59:58 he Exp $
+#      $NetBSD: Makefile.xen,v 1.1.2.2 2004/06/22 07:53:35 tron Exp $
 #      NetBSD: Makefile.i386,v 1.132 2003/07/05 16:56:10 simonb Exp 
 
 # Makefile for NetBSD
@@ -65,7 +65,7 @@
        rm -f ${A}
        ln -s $S/arch/${A}/include ${A}
 .endfor
-       rm -rf xen-ma
+       -rm -rf xen-ma
        mkdir xen-ma
        ln -s ../${XEN_BUILD} xen-ma/machine
 .endif



Home | Main Index | Thread Index | Old Index