From 22ba12d1aa0f6380146f6e66382dbc1058c30625 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Mon, 19 Mar 2018 23:01:09 +0100 Subject: build: Reverse '--disable-multi-user' effect This fixes a bug where the '--disable-multi-user' was actually having the reverse effect of installing 'cron' and 'crontab'. * configure.ac: Reverse equality test when setting 'MULTI_USER' Automake conditional. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index f741d1a..0a61bb4 100644 --- a/configure.ac +++ b/configure.ac @@ -75,7 +75,7 @@ AC_ARG_ENABLE([multi-user], [Don't Install legacy cron and crontab programs])], [enable_multi_user="$enableval"], [enable_multi_user="yes"]) -AM_CONDITIONAL([MULTI_USER], [test "x$enable_multi_user" != xyes]) +AM_CONDITIONAL([MULTI_USER], [test "x$enable_multi_user" = xyes]) # Configure the various files that mcron uses at runtime. -- cgit v1.2.3