diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-03-18 07:01:53 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-03-18 07:01:53 +0000 |
commit | e47016da2dd58424d959dbb0c0f90ae39822c823 (patch) | |
tree | 4fb6b71c8e89eba471db7be0c26f4be01c431a8d /etc | |
parent | bbc020cc5c817b99a07a1c990d0f3413a9ea2d0e (diff) | |
download | FreeBSD-src-e47016da2dd58424d959dbb0c0f90ae39822c823.zip FreeBSD-src-e47016da2dd58424d959dbb0c0f90ae39822c823.tar.gz |
Use new mtree file to rebuild /usr/include.
Replace rm -f; ln -s with ln -sf when installing LATIN1LINKS, also
do not attempt to chown/chmod these links.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/etc/Makefile b/etc/Makefile index 7a47072..c6bb7e7 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.105 1995/02/26 20:29:37 ache Exp $ +# $Id: Makefile,v 1.106 1995/03/10 08:42:07 rgrimes Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -438,27 +438,19 @@ des-tarball: rm -rf ${RELEASEDIR}/tmpdes distrib-dirs: - # - # XXX The mtree commands need to be redone so that a status of 0 or - # 2 is okay, but a status of 1 causes the make to abort. - # - # XXX This will currently error out if you have a procfs mounted, - # unmount it to get past this problem until procfs is fixed. - # mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/ mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr - cd ${DESTDIR}/usr/share/locale; \ - for l in ${LATIN1LINKS} ; do \ - rm -f $$l.ISO8859-1; \ - ln -s lt_LN.ISO8859-1 $$l.ISO8859-1; \ - chown ${BINOWN}.${BINGRP} $$l.ISO8859-1; \ - chmod 755 $$l.ISO8859-1; \ - done + mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \ + -p ${DESTDIR}/usr/include .if defined(MAKE_LOCAL) mtree -deU -f ${.CURDIR}/mtree/BSD.local.dist -p ${DESTDIR}/usr/local .endif cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys + cd ${DESTDIR}/usr/share/locale; \ + for l in ${LATIN1LINKS} ; do \ + ln -sf lt_LN.ISO8859-1 $$l.ISO8859-1; \ + done floppies: kcopy.flp filesyst.flp cpio.flp cdins.flp |