Commit 304ebd24 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

build: Make things up better about daemons

Otherwise we end up with a broken output outside of MacOS:

    checking whether daemon() works... checking for daemon... yes

Now it's one or the other:

    checking whether daemon() works... no
    checking for daemon... yes

If we want to lie, we should at least be good at it.
parent 8da085a6
......@@ -372,11 +372,11 @@ fi
AM_CONDITIONAL([WITH_UNWIND], [test "$have_unwind" = yes])
# white lie - we don't actually test it
AC_MSG_CHECKING([whether daemon() works])
case $target in
*-*-darwin*)
# white lie - we don't actually test it
# present but not functional
AC_MSG_CHECKING([whether daemon() works])
AC_MSG_RESULT([no])
ac_cv_func_daemon=no
;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment