diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-04-01 12:59:25 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-04-03 21:33:56 +0200 |
commit | ae2988da933f39d8983c94aaeef3c1b6f98f3e4e (patch) | |
tree | 6693c1d530be35c6111744a4832b8b4a47722865 /configure.ac | |
parent | 0e5fdadcd39c0a51a62be29b42752415d4892a71 (diff) | |
download | ModemManager-ae2988da933f39d8983c94aaeef3c1b6f98f3e4e.tar.gz |
build: use 'no' to disable suspend/resume support, instead of 'none'
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 26d54c108..c0bf86c3c 100644 --- a/configure.ac +++ b/configure.ac @@ -189,11 +189,11 @@ dnl AC_ARG_WITH(suspend-resume, AS_HELP_STRING([--with-suspend-resume=no|systemd], [Build ModemManager with specific suspend/resume support])) if test "x$with_suspend_resume" = "x"; then - with_suspend_resume="none" + with_suspend_resume="no" fi case $with_suspend_resume in - none) + no) AC_DEFINE(WITH_SUSPEND_RESUME, 0, [Define if you have suspend-resume support]) ;; systemd) @@ -202,7 +202,7 @@ case $with_suspend_resume in AC_DEFINE(WITH_SUSPEND_RESUME, 1, [Define if you have suspend-resume support]) ;; *) - AC_MSG_ERROR(--with-suspend-resume must be one of [none, systemd]) + AC_MSG_ERROR(--with-suspend-resume must be one of [no, systemd]) ;; esac |