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 /sys/pc98 | |
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 'sys/pc98')
-rw-r--r-- | sys/pc98/conf/Makefile.pc98 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pc98/conf/Makefile.pc98 b/sys/pc98/conf/Makefile.pc98 index 8381656..d46464d 100644 --- a/sys/pc98/conf/Makefile.pc98 +++ b/sys/pc98/conf/Makefile.pc98 @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.pc98,v 1.53 1999/01/25 12:12:01 kato Exp $ +# $Id: Makefile.pc98,v 1.54 1999/01/27 08:25:19 kato Exp $ # # Makefile for FreeBSD # @@ -224,7 +224,7 @@ install: fi .endif .if exists(${DESTDIR}/kernel) - chflags noschg ${DESTDIR}/kernel + -chflags noschg ${DESTDIR}/kernel mv ${DESTDIR}/kernel ${DESTDIR}/kernel.old .endif PATH=$${PATH}:/sbin:/usr/sbin; \ |