diff options
author | jkh <jkh@FreeBSD.org> | 1997-06-05 21:20:58 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-06-05 21:20:58 +0000 |
commit | d1abd2cb44215800bafdb22938326619dd4210b9 (patch) | |
tree | 61949fd5c42ca855290f176f65591d9477a9ddea /include/Makefile | |
parent | 9160ca00b5da185787c84ae5e1b1d848847dd262 (diff) | |
download | FreeBSD-src-d1abd2cb44215800bafdb22938326619dd4210b9.zip FreeBSD-src-d1abd2cb44215800bafdb22938326619dd4210b9.tar.gz |
Go to SHARED=copies by default.
Agreed-upon by: lots-o-folks.
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/Makefile b/include/Makefile index e72bd37..35e9538 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.2 (Berkeley) 1/4/94 -# $Id: Makefile,v 1.56 1997/05/21 23:07:27 jdp Exp $ +# $Id: Makefile,v 1.57 1997/05/28 04:46:38 wpaul Exp $ # # Doing a make install builds /usr/include # @@ -40,10 +40,11 @@ LNOHEADERDIRS= isofs ufs LSUBDIRS= isofs/cd9660 ufs/ffs ufs/lfs ufs/mfs ufs/ufs # Define SHARED to indicate whether you want symbolic links to the system -# source (``symlinks''), or a separate copy (``copies''); (latter useful -# in environments where it's not possible to keep /sys publicly readable) -# SHARED= copies -SHARED?= symlinks +# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is +# probably only useful for developers and should be avoided if you do not +# wish to tie your /usr/include and /usr/src together. +#SHARED= symlinks +SHARED?= copies .if exists (${.CURDIR}/../sys/conf/newvers.sh) |