diff options
Diffstat (limited to 'meta-networking/recipes-connectivity/samba/samba/0006-avoid-using-colon-in-the-checking-msg.patch')
-rw-r--r-- | meta-networking/recipes-connectivity/samba/samba/0006-avoid-using-colon-in-the-checking-msg.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/samba/samba/0006-avoid-using-colon-in-the-checking-msg.patch b/meta-networking/recipes-connectivity/samba/samba/0006-avoid-using-colon-in-the-checking-msg.patch new file mode 100644 index 0000000000..cdf7a38c18 --- /dev/null +++ b/meta-networking/recipes-connectivity/samba/samba/0006-avoid-using-colon-in-the-checking-msg.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 5413f97290d3126262eb309ecbcf7769509f2a11 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jackie Huang <jackie.huang@windriver.com> | ||
3 | Date: Tue, 10 Nov 2015 00:48:35 -0500 | ||
4 | Subject: [PATCH 6/7] avoid using colon in the checking msg | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | colon is used as the separator when parse from | ||
9 | a answers file, the colon here makes it never | ||
10 | get the right answer. | ||
11 | |||
12 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> | ||
13 | --- | ||
14 | wscript_configure_system_mitkrb5 | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/wscript_configure_system_mitkrb5 b/wscript_configure_system_mitkrb5 | ||
18 | index 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 | -- | ||
31 | 1.9.1 | ||
32 | |||