svn commit: r311731 - stable/11/kerberos5/libexec
Ngie Cooper
ngie at FreeBSD.org
Mon Jan 9 01:31:17 UTC 2017
Author: ngie
Date: Mon Jan 9 01:31:16 2017
New Revision: 311731
URL: https://svnweb.freebsd.org/changeset/base/311731
Log:
MFC r311114:
Build libexec/kadmind when MK_GSSAPI != no because it requires gssapi
Modified:
stable/11/kerberos5/libexec/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/kerberos5/libexec/Makefile
==============================================================================
--- stable/11/kerberos5/libexec/Makefile Mon Jan 9 01:31:12 2017 (r311730)
+++ stable/11/kerberos5/libexec/Makefile Mon Jan 9 01:31:16 2017 (r311731)
@@ -1,7 +1,13 @@
# $FreeBSD$
-SUBDIR= digest-service ipropd-master ipropd-slave hprop hpropd kadmind kdc \
+.include <src.opts.mk>
+
+SUBDIR= digest-service ipropd-master ipropd-slave hprop hpropd kdc \
kdigest kfd kimpersonate kpasswdd kcm
SUBDIR_PARALLEL=
+.if ${MK_GSSAPI} != "no"
+SUBDIR+= kadmind
+.endif
+
.include <bsd.subdir.mk>
More information about the svn-src-stable-11
mailing list