build-sys: enable timesyncd by default

This commit is contained in:
Lennart Poettering 2014-05-05 21:39:10 +02:00
parent 37efac5ddb
commit 43ba1b3e64
1 changed files with 1 additions and 1 deletions

View File

@ -822,7 +822,7 @@ AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
# ------------------------------------------------------------------------------
have_timesyncd=no
AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
if test "x$enable_timesyncd" = "xyes"; then
if test "x$enable_timesyncd" != "xno"; then
have_timesyncd=yes
fi
AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])