From a3cf63eab87fc34bd871c7bab0676c3a06558011 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Tue, 11 Oct 2016 20:41:02 +0200 Subject: BUILD: Not having /sbin/service is not fatal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If the target platform does not have the service executable, we must not fail the build, but proceed, just disabling the functionality in sssctl. Reviewed-by: Lukáš Slebodník --- src/external/service.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/external/service.m4 b/src/external/service.m4 index 1e6e18918..b69760f4a 100644 --- a/src/external/service.m4 +++ b/src/external/service.m4 @@ -7,7 +7,7 @@ AC_DEFUN([CHECK_SERVICE_EXECUTABLE], AC_MSG_RESULT(yes) else AC_MSG_RESULT([no]) - AC_MSG_ERROR([the service executable is not available]) + AC_MSG_WARN([the service executable is not available]) fi ] ) -- cgit