1From 1590cc614aaf0fb81cd804414d6c9d5a9227352c Mon Sep 17 00:00:00 2001
2From: Wenlin Kang <wenlin.kang@windriver.com>
3Date: Tue, 5 Nov 2019 16:16:44 +0800
4Subject: [PATCH] configure.in: remove check for chkconfig
5
6chkconfig can't work on cross-platform, so should remove check for it.
7
8Upstream-Status: Inappropriate [ embedded specific ]
9
10Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com>
11---
12 configure.in | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15diff --git a/configure.in b/configure.in
16index 48b9a31..cedeb43 100644
17--- a/configure.in
18+++ b/configure.in
19@@ -42,7 +42,8 @@ AC_SUBST(VER_JSON)
20 AC_SUBST(VER_XML)
21
22 AC_PATH_PROG(PATH_CP, cp)
23-AC_PATH_PROG(PATH_CHKCONFIG, chkconfig)
24+#AC_PATH_PROG(PATH_CHKCONFIG, chkconfig)
25+AC_SUBST(PATH_CHKCONFIG)
26
27 # Check for systemd
28 AC_CHECK_PROG(PKG_CONFIG, pkg-config, pkg-config)
29--
301.9.1
31
32