diff options
author | jkh <jkh@FreeBSD.org> | 1994-06-29 21:19:38 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-06-29 21:19:38 +0000 |
commit | 4d2c47b561fa387e0241dd24c7932f46d622a880 (patch) | |
tree | c35666d8512e2c6f8b9e44c3e89f4accab9f3ba2 /etc | |
parent | be1084404ef0d8f27221a160848ee446c3c8c0e1 (diff) | |
download | FreeBSD-src-4d2c47b561fa387e0241dd24c7932f46d622a880.zip FreeBSD-src-4d2c47b561fa387e0241dd24c7932f46d622a880.tar.gz |
Oh GACK! src-clean doesn't quite work that easily since cleandist rebuilds the
obj links again and they need to be nuked out one more time after it's finished.
Sigh.. Oh well, this code will probably never be run again anyway.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index d4727bf..9cb5b77 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.74 1994/06/28 05:37:04 jkh Exp $ +# $Id: Makefile,v 1.75 1994/06/29 11:06:30 jkh Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -429,6 +429,7 @@ bin-tarball: src-clean: (cd ${DESTDIR}/usr/src; make cleandist) + find ${DESTDIR}/usr/src -name obj | xargs -n30 rm -rf chown -R bin:bin ${DESTDIR}/usr/src chmod -R og-w ${DESTDIR}/usr/src |