diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1994-09-09 13:34:27 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1994-09-09 13:34:27 +0000 |
commit | 666f2fb3d32beba6dd07bbcfe2528d80fa05e2be (patch) | |
tree | 8555010db6570a8e4953cb8c57a04aaa0911b2e5 /etc/Makefile | |
parent | 0d2e67cf3e683eb82dbf4331136590f516a8af96 (diff) | |
download | FreeBSD-src-666f2fb3d32beba6dd07bbcfe2528d80fa05e2be.zip FreeBSD-src-666f2fb3d32beba6dd07bbcfe2528d80fa05e2be.tar.gz |
Remove the explicit call to ../Makefile mdec:, it is now handled by a make
install from the top level correctly.
Rewrite release-dirs: to use new mtree file mtree/BSD.release.dist.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/etc/Makefile b/etc/Makefile index 0d9a930..e8ea56e 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.78 1994/09/07 07:42:56 pst Exp $ +# $Id: Makefile,v 1.79 1994/09/08 09:33:38 rgrimes Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -217,7 +217,6 @@ distribution: distrib-dirs ${DESTDIR}/etc/sendmail.cf) (cd ${.CURDIR}/..; \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FREEBSD} ${DESTDIR}/) - (cd ${.CURDIR}/..; ${MAKE} mdec; ) (cd ${.CURDIR}/../share/man; ${MAKE} makedb; ) .if ${MACHINE} == "tahoe" (cd ${.CURDIR}/etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} \ @@ -569,22 +568,8 @@ release: release-dirs distribution crunch extract kcopy-kernels \ floppies bin-tarball des-tarball clean release-dirs: - chflags -R noschg ${RELEASEDIR}/filesys - rm -rf ${RELEASEDIR}/filesys - mkdir ${RELEASEDIR}/filesys - chown ${BINOWN}.${BINGRP} ${RELEASEDIR}/filesys - chmod 755 ${RELEASEDIR}/filesys - rm -rf ${RELEASEDIR}/tarballs - mkdir ${RELEASEDIR}/tarballs - mkdir ${RELEASEDIR}/tarballs/bindist - mkdir ${RELEASEDIR}/tarballs/objdist - mkdir ${RELEASEDIR}/tarballs/secrdist - mkdir ${RELEASEDIR}/tarballs/srcdist - chown -R ${BINOWN}.${BINGRP} ${RELEASEDIR}/tarballs - chmod -R 755 ${RELEASEDIR}/tarballs - rm -rf ${RELEASEDIR}/floppies - mkdir ${RELEASEDIR}/floppies - chown ${BINOWN}.${BINGRP} ${RELEASEDIR}/floppies - chmod 755 ${RELEASEDIR}/floppies + chflags -R noschg ${RELEASEDIR} + rm -rf ${RELEASEDIR}/* + mtree -u -f ${.CURDIR}/mtree/BSD.release.dist -p ${RELEASEDIR} .include <bsd.prog.mk> |