The commit adding the systemd-daemon configure check has a small error in it
where one if statement is missing the test call, this fixes this.

Signed-off-by: Hans de Goede <hdego...@redhat.com>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index c6764f5..fe9b783 100644
--- a/configure.ac
+++ b/configure.ac
@@ -841,7 +841,7 @@ if test "x$WITH_SYSTEMD_DAEMON" = xauto; then
        WITH_SYSTEMD_DAEMON="$HAVE_SYSTEMD_DAEMON"
 fi
 if test "x$WITH_SYSTEMD_DAEMON" = xyes; then
-       if "x$HAVE_SYSTEMD_DAEMON" = xno; then
+       if test "x$HAVE_SYSTEMD_DAEMON" = xno; then
                AC_MSG_ERROR([systemd support requested but no library has been 
found])
        fi
        AC_DEFINE(HAVE_SYSTEMD_DAEMON, 1, [Define to 1 if libsystemd-daemon is 
available])
-- 
1.8.5.3

_______________________________________________
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to