summaryrefslogtreecommitdiff
path: root/wscript_configure_system_mitkrb5
diff options
context:
space:
mode:
authorChristian Ambach <ambi@samba.org>2017-05-02 18:09:04 +0200
committerAndreas Schneider <asn@cryptomilk.org>2017-05-02 23:42:14 +0200
commit006d58f5baabec474f4e4fc7b406a55cf74d8f26 (patch)
tree26524d30d75a39ec32cbfcae92afd880931005f5 /wscript_configure_system_mitkrb5
parentae8f34984fee60dc7aeeda38054cc51426f782d1 (diff)
downloadsamba-006d58f5baabec474f4e4fc7b406a55cf74d8f26.tar.gz
waf: Improve log errors for MIT build
Signed-off-by: Christian Ambach <ambi@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'wscript_configure_system_mitkrb5')
-rw-r--r--wscript_configure_system_mitkrb56
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript_configure_system_mitkrb5 b/wscript_configure_system_mitkrb5
index 8695dc66d98..9c351131ad1 100644
--- a/wscript_configure_system_mitkrb5
+++ b/wscript_configure_system_mitkrb5
@@ -67,9 +67,9 @@ if conf.env.KRB5_CONFIG:
krb5_version = krb5_version.split("-")[0]
if parse_version(krb5_version) < parse_version(krb5_required_version):
- Logs.error('ERROR: MIT KRB5 build with Samba AD requires at least %s. %s has been found and cannot be used' % (krb5_required_version, krb5_version))
- Logs.error('ERROR: If you want to just build Samba FS use the option --without-ad-dc which requires version %s' % (krb5_min_required_version))
- Logs.error('ERROR: You may try to build with embedded Heimdal Kerebros by not specifying --with-system-mitkrb5')
+ Logs.error('ERROR: The MIT KRB5 build with Samba AD requires at least %s. %s has been found and cannot be used' % (krb5_required_version, krb5_version))
+ Logs.error('ERROR: If you want to just build Samba FS (File Server) use the option --without-ad-dc which requires version %s' % (krb5_min_required_version))
+ Logs.error('ERROR: You may try to build with embedded Heimdal Kerberos by not specifying --with-system-mitkrb5')
sys.exit(1)
else:
Logs.info('MIT Kerberos %s detected, MIT krb5 build can proceed' % (krb5_version))