svn commit: r311730 - stable/10/kerberos5/libexec
Ngie Cooper
ngie at FreeBSD.org
Mon Jan 9 01:31:14 UTC 2017
Author: ngie
Date: Mon Jan 9 01:31:12 2017
New Revision: 311730
URL: https://svnweb.freebsd.org/changeset/base/311730
Log:
MFC r311114:
Build libexec/kadmind when MK_GSSAPI != no because it requires gssapi
Modified:
stable/10/kerberos5/libexec/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/kerberos5/libexec/Makefile
==============================================================================
--- stable/10/kerberos5/libexec/Makefile Mon Jan 9 01:29:20 2017 (r311729)
+++ stable/10/kerberos5/libexec/Makefile Mon Jan 9 01:31:12 2017 (r311730)
@@ -1,7 +1,13 @@
# $FreeBSD$
-SUBDIR= digest-service ipropd-master ipropd-slave hprop hpropd kadmind kdc \
+.include <bsd.own.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-all
mailing list