summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch
diff options
context:
space:
mode:
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.patch23
1 files changed, 0 insertions, 23 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
deleted file mode 100644
index 242276edb0..0000000000
--- a/meta-networking/recipes-support/ntp/files/ntp-disable-debugging.patch
+++ /dev/null
@@ -1,23 +0,0 @@
1set ntp_ok to no if ntp debugging is not enabled.
2
3Upstream-status: Pending
4
5There is a problem in configure.ac file that whether or not
6'--enable-debugging' is specified in configure cmdline, debugging
7is always enabled.
8We should disable ntp debugging by default.
9
10Signed-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)