SummaryRefsLogTreeCommitDiffStats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 524008c..7cbf969 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,10 @@ GNU Mcron NEWS -*- outline -*-
* Noteworthy changes in release ?.? (????-??-??) [?]
+** Bug fixes
+
+ The "--disable-multi-user" configure variable is not reversed anymore.
+ 'cron' and 'crontab' are now installed unless this option is used.
* Noteworthy changes in release 1.1 (2018-03-19) [stable]
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.