blob: cdf7a38c18b881e7783a003c8cd19c58481f4710 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 5413f97290d3126262eb309ecbcf7769509f2a11 Mon Sep 17 00:00:00 2001
2From: Jackie Huang <jackie.huang@windriver.com>
3Date: Tue, 10 Nov 2015 00:48:35 -0500
4Subject: [PATCH 6/7] avoid using colon in the checking msg
5
6Upstream-Status: Pending
7
8colon is used as the separator when parse from
9a answers file, the colon here makes it never
10get the right answer.
11
12Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
13---
14 wscript_configure_system_mitkrb5 | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/wscript_configure_system_mitkrb5 b/wscript_configure_system_mitkrb5
18index a62d00b..a2d89f0 100644
19--- a/wscript_configure_system_mitkrb5
20+++ b/wscript_configure_system_mitkrb5
21@@ -240,7 +240,7 @@ conf.CHECK_CODE('''
22 ''',
23 'HAVE_WRFILE_KEYTAB',
24 headers='krb5.h', lib='krb5', execute=True,
25- msg="Checking whether the WRFILE:-keytab is supported");
26+ msg="Checking whether the WRFILE -keytab is supported");
27 # Check for KRB5_DEPRECATED handling
28 conf.CHECK_CODE('''#define KRB5_DEPRECATED 1
29 #include <krb5.h>''',
30--
311.9.1
32