diff options
author | jkh <jkh@FreeBSD.org> | 1999-09-19 02:05:52 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-09-19 02:05:52 +0000 |
commit | 7ab42b2253ccc67416479e053f47749a18e199df (patch) | |
tree | 465ff9294cdf6004495f3db4ec9365c657a4f5e2 /release | |
parent | 7c17092261826640dc172f03faa851b5bf493360 (diff) | |
download | FreeBSD-src-7ab42b2253ccc67416479e053f47749a18e199df.zip FreeBSD-src-7ab42b2253ccc67416479e053f47749a18e199df.tar.gz |
Make trash removals less chatty.
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index a522dbd..a042061 100644 --- a/release/Makefile +++ b/release/Makefile @@ -155,7 +155,7 @@ rerelease release: .if exists(${CHROOTDIR}) # The first command will fail on a handful of files that have their schg # flags set. But it greatly speeds up the next two commands. - -rm -rf ${CHROOTDIR} + -rm -rf ${CHROOTDIR} 2>/dev/null -chflags -R noschg ${CHROOTDIR}/. -rm -rf ${CHROOTDIR} .endif @@ -273,6 +273,7 @@ clean: # Clean out ${_R} and make the directory structure. release.1: mkdir -p ${_R} + rm -rf ${_R}/* 2> /dev/null -chflags -R noschg ${_R}/. rm -rf ${_R}/* mkdir ${RD} |