diff options
author | ache <ache@FreeBSD.org> | 1995-09-29 19:35:10 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-09-29 19:35:10 +0000 |
commit | a8d5404334b3d14d44ce941961237b6d4a48f386 (patch) | |
tree | cc2f1735292a7b033810e2977b815716e80490f7 /sbin | |
parent | 269e1bfa71b3d3801499bec1e01bda677f96d2e6 (diff) | |
download | FreeBSD-src-a8d5404334b3d14d44ce941961237b6d4a48f386.zip FreeBSD-src-a8d5404334b3d14d44ce941961237b6d4a48f386.tar.gz |
Build secure init if available and allowed
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index f86158b..2cf7796 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 \ |