diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2016-10-11 20:41:02 +0200 |
---|---|---|
committer | Lukas Slebodnik <lslebodn@redhat.com> | 2016-10-14 18:08:45 +0200 |
commit | a3cf63eab87fc34bd871c7bab0676c3a06558011 (patch) | |
tree | 0a6f42764ecab3e298815baf49f40e0c144a9b04 | |
parent | b7b92bafe759854ad05038f1d48a69e358a7ccbf (diff) | |
download | sssd-a3cf63eab87fc34bd871c7bab0676c3a06558011.tar.gz sssd-a3cf63eab87fc34bd871c7bab0676c3a06558011.tar.xz sssd-a3cf63eab87fc34bd871c7bab0676c3a06558011.zip |
BUILD: Not having /sbin/service is not fatal
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 <lslebodn@redhat.com>
-rw-r--r-- | src/external/service.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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 ] ) |