diff options
author | Xufeng Zhang <xufeng.zhang@windriver.com> | 2014-08-14 11:14:45 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-21 21:35:04 +0200 |
commit | 55ebea4bb0909e936ad89c17abfeb3549937aefa (patch) | |
tree | b11b11523524d47bc2b13be88cd7cc7886a80873 /meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch | |
parent | 5f532a928c7df863a3f0d32db3918c8f7d227e2b (diff) | |
download | meta-openembedded-55ebea4bb0909e936ad89c17abfeb3549937aefa.tar.gz |
ntp: Disable debugging by default
There is a problem in configure.ac file that whether or not
'--enable-debugging' is specified in configure cmdline, debugging
is always enabled.
We should disable ntp debugging by default.
Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch')
-rw-r--r-- | meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch b/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch new file mode 100644 index 0000000000..242276edb0 --- /dev/null +++ b/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | set ntp_ok to no if ntp debugging is not enabled. | ||
2 | |||
3 | Upstream-status: Pending | ||
4 | |||
5 | There is a problem in configure.ac file that whether or not | ||
6 | '--enable-debugging' is specified in configure cmdline, debugging | ||
7 | is always enabled. | ||
8 | We should disable ntp debugging by default. | ||
9 | |||
10 | Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com> | ||
11 | |||
12 | --- | ||
13 | --- a/configure.ac | ||
14 | +++ b/configure.ac | ||
15 | @@ -2458,7 +2458,7 @@ | ||
16 | [+ include ntpd debugging code] | ||
17 | )], | ||
18 | [ntp_ok=$enableval], | ||
19 | - [ntp_ok=yes] | ||
20 | + [ntp_ok=no] | ||
21 | ) | ||
22 | case "$ntp_ok" in | ||
23 | yes) | ||