diff options
author | phk <phk@FreeBSD.org> | 1994-10-29 12:47:44 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-10-29 12:47:44 +0000 |
commit | 95fca924d584d1bbb3ff175d1d577716fa795a01 (patch) | |
tree | 042d83d01d36a67fa65e36ebfc4bfa59e7d7c7b9 /etc/Makefile | |
parent | d347dec74225226e47f1e9c8485a20d5c2db5227 (diff) | |
download | FreeBSD-src-95fca924d584d1bbb3ff175d1d577716fa795a01.zip FreeBSD-src-95fca924d584d1bbb3ff175d1d577716fa795a01.tar.gz |
Fixes related to release-production:
bdes only if !NOCRYPT
Always MAKEDEV in bindist, otherwise diskless installation is a mess.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/Makefile b/etc/Makefile index 969b0b1..71699cb 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.89 1994/10/17 02:32:36 phk Exp $ +# $Id: Makefile,v 1.90 1994/10/22 02:11:08 phk Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -122,7 +122,9 @@ SCRYPT_LIB= lib/libcrypt DESCRYPT_LIB= secure/lib/libcrypt CRYPT_SRCS= bin/ed bin/rcp CRYPT_SRCS+= sbin/init +.if !defined(NOCRYPT) CRYPT_SRCS+= secure/usr.bin/bdes +.endif CRYPT_DIRS= bin sbin usr usr/bin usr/lib all depend etc install lint: @@ -159,9 +161,7 @@ distribution: distrib-dirs pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \ install -c -o ${BINOWN} -g ${BINGRP} -m 555 \ MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev ) -.if defined(CDROMDIST) (cd ${DESTDIR}/dev; sh MAKEDEV all) ; -.endif (cd ${.CURDIR}/root; \ install -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.cshrc \ ${DESTDIR}/root/.cshrc; \ |