Source-Changes-HG archive

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

[src/netbsd-2-0]: src/gnu/usr.bin/gcc3/host-libiberty Pull up revision 1.6 (r...



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

description:
Pull up revision 1.6 (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:

 gnu/usr.bin/gcc3/host-libiberty/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (17 lines):

diff -r 90907fa10072 -r 73d045e84c03 gnu/usr.bin/gcc3/host-libiberty/Makefile
--- a/gnu/usr.bin/gcc3/host-libiberty/Makefile  Tue Jun 22 07:53:35 2004 +0000
+++ b/gnu/usr.bin/gcc3/host-libiberty/Makefile  Tue Jun 22 07:53:44 2004 +0000
@@ -1,11 +1,11 @@
-#      $NetBSD: Makefile,v 1.4.2.1 2004/06/14 18:20:23 tron Exp $
+#      $NetBSD: Makefile,v 1.4.2.2 2004/06/22 07:53:44 tron Exp $
 
 libiberty/libiberty.a:
        [ ! -d libiberty ] && mkdir libiberty || exit 0
        (cd libiberty; env CC=${HOST_CC:Q} ${HOST_SH} ${DIST}/libiberty/configure && env CC=${HOST_CC:Q} ${MAKE})
 
 cleandir:
-       rm -rf libiberty
+       -rm -rf libiberty
 
 depend dependall all: libiberty/libiberty.a
        



Home | Main Index | Thread Index | Old Index