diff options
author | des <des@FreeBSD.org> | 1999-02-14 13:56:15 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1999-02-14 13:56:15 +0000 |
commit | e158dd910e85016b8e7804f839754e22e78dea7c (patch) | |
tree | 3254bcf2b23c268bd2576e23425d81e7889d9792 /Makefile.inc1 | |
parent | 61e9418dd2bf9555cd37719ccbc0996bd5c4565a (diff) | |
download | FreeBSD-src-e158dd910e85016b8e7804f839754e22e78dea7c.zip FreeBSD-src-e158dd910e85016b8e7804f839754e22e78dea7c.tar.gz |
Ignore errors from chflags. This makes it possible to make installworld
with DESTDIR set to an NFS-mounted file system.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 82c1deb..dbaa3e0 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc1,v 1.61 1999/01/23 08:44:17 markm Exp $ +# $Id: Makefile.inc1,v 1.62 1999/01/27 15:08:05 jkh Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -226,7 +226,7 @@ buildworld: check-objformat @echo ">>> Cleaning up the temporary ${OBJFORMAT} build tree" @echo "--------------------------------------------------------------" mkdir -p ${WORLDTMP} - chflags -R noschg ${WORLDTMP}/ + -chflags -R noschg ${WORLDTMP}/ rm -rf ${WORLDTMP} .endif .if !defined(NOTOOLS) |