diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-06-04 03:58:52 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-06-04 03:58:52 +0000 |
commit | ef99a93f4e49e72980341ce0e7144ee2c3ad39fd (patch) | |
tree | bbea5a6986ea26571dc07de1b38b8b2a59031c67 /etc | |
parent | c679de5e1dd99c426669950b36af4e3fa12c5281 (diff) | |
download | src-ef99a93f4e49e72980341ce0e7144ee2c3ad39fd.tar.gz src-ef99a93f4e49e72980341ce0e7144ee2c3ad39fd.zip |
Remove /usr/local meddling.
Approved by: jkh
Notes
Notes:
svn path=/head/; revision=26430
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/etc/Makefile b/etc/Makefile index 57b2de5c2347..a88ab97bc91b 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.149 1997/02/23 09:20:39 peter Exp $ +# $Id: Makefile,v 1.150 1997/04/27 03:59:12 jkh Exp $ # -rw-r--r-- BINOWN= root @@ -125,9 +125,6 @@ distrib-dirs: mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr 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; \ set - `cat ${.CURDIR}/locale.alias`; \ @@ -147,17 +144,5 @@ distrib-dirs: done; \ rm -rf POSIX; \ ln -s C POSIX -.if defined(MAKE_LOCAL) - cd ${DESTDIR}/usr/local/share/nls; \ - set - `cat ${.CURDIR}/locale.alias`; \ - while [ $$# -gt 0 ] ; \ - do \ - rm -rf "$$1"; \ - ln -s "$$2" "$$1"; \ - shift; shift; \ - done; \ - rm -rf POSIX; \ - ln -s C POSIX -.endif .include <bsd.prog.mk> |