From f73c1ad4e07fc48184d67a253ee388f90b2a7e16 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Fri, 29 Sep 1995 19:35:10 +0000 Subject: [PATCH] Build secure init if available and allowed --- sbin/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sbin/Makefile b/sbin/Makefile index f86158b6a75e..2cf7796f9844 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -3,7 +3,13 @@ # XXX MISSING: fsdb icheck ncheck SUBDIR= adjkerntz badsect clri disklabel dmesg dset dump dumpfs \ - dumplfs dumpon fsck ifconfig init ipfw md5 mknod modload \ + dumplfs dumpon fsck ifconfig +.if exists(../secure) && !defined(NOCRYPT) && !defined(NOSECURE) +SUBDIR+= ../secure/sbin/init +.else +SUBDUR+= init +.endif +SUBDIR+= ipfw md5 mknod modload \ modunload mount mount_cd9660 mount_fdesc mount_kernfs \ mount_lfs mount_nfs mount_null mount_portal mount_procfs \ mount_umap mount_union mountd newfs newlfs nfsd nfsiod \