From: Paul Eggert Date: Mon, 13 Oct 2003 19:09:58 +0000 (+0000) Subject: Trivial fix for vfork cross test. X-Git-Tag: AUTOCONF-2.57g~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08d070c99d63b51ff550a9a119cd1304d8fc3f53;p=thirdparty%2Fautoconf.git Trivial fix for vfork cross test. --- diff --git a/ChangeLog b/ChangeLog index 6d53a8a3..ca4e40ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-10-13 Nathanael Nerode + + * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork + cross test. + 2003-10-11 Steven G. Johnson * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official diff --git a/lib/autoconf/functions.m4 b/lib/autoconf/functions.m4 index 5ddf6116..d1bf207a 100644 --- a/lib/autoconf/functions.m4 +++ b/lib/autoconf/functions.m4 @@ -1723,7 +1723,7 @@ if test "x$ac_cv_func_vfork" = xyes; then _AC_FUNC_VFORK fi; if test "x$ac_cv_func_fork_works" = xcross; then - ac_cv_func_vfork_works=ac_cv_func_vfork + ac_cv_func_vfork_works=$ac_cv_func_vfork AC_MSG_WARN([result $ac_cv_func_vfork_works guessed because of cross compilation]) fi