blob: 84383f955f932875db722d643c45a45cd395744a [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From 1590cc614aaf0fb81cd804414d6c9d5a9227352c Mon Sep 17 00:00:00 2001
2From: Wenlin Kang <wenlin.kang@windriver.com>
3Date: Tue, 5 Nov 2019 16:16:44 +0800
Andrew Geissler220dafd2023-10-04 10:18:08 -05004Subject: [PATCH] configure.ac: remove check for chkconfig
Andrew Geissler82c905d2020-04-13 13:39:40 -05005
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---
Andrew Geissler220dafd2023-10-04 10:18:08 -050012 configure.ac | 3 ++-
Andrew Geissler82c905d2020-04-13 13:39:40 -050013 1 file changed, 2 insertions(+), 1 deletion(-)
14
Andrew Geissler220dafd2023-10-04 10:18:08 -050015diff --git a/configure.ac b/configure.ac
Andrew Geissler82c905d2020-04-13 13:39:40 -050016index 48b9a31..cedeb43 100644
Andrew Geissler220dafd2023-10-04 10:18:08 -050017--- a/configure.ac
18+++ b/configure.ac
Andrew Geissler82c905d2020-04-13 13:39:40 -050019@@ -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