From: Paul Eggert Date: Sun, 3 Jan 2016 00:19:53 +0000 (-0800) Subject: msvc-inval: fix problem with unset shell var X-Git-Tag: v1.0~6866 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=6cc32c63e80bc1a30c521b2f07f2b54909b59892;p=gnulib.git msvc-inval: fix problem with unset shell var Problem reported by Karl Berry in: http://lists.gnu.org/archive/html/bug-gnulib/2016-01/msg00004.html * modules/msvc-inval (Depends-on): AC_REQUIRE gl_MSVC_INVAL instead of merely calling it. * modules/msvc-nothrow (Depends-on): Likewise for gl_MSVC_NOTHROW. --- diff --git a/ChangeLog b/ChangeLog index c41b27dc8f..2c60bc9c1b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2016-01-02 Paul Eggert + + msvc-inval: fix problem with unset shell var + Problem reported by Karl Berry in: + http://lists.gnu.org/archive/html/bug-gnulib/2016-01/msg00004.html + * modules/msvc-inval (Depends-on): + AC_REQUIRE gl_MSVC_INVAL instead of merely calling it. + * modules/msvc-nothrow (Depends-on): Likewise for gl_MSVC_NOTHROW. + 2016-01-01 Pádraig Brady tests: for compare_(), use cmp -s where available diff --git a/modules/msvc-inval b/modules/msvc-inval index 7eb030aca4..ea1a7af8e9 100644 --- a/modules/msvc-inval +++ b/modules/msvc-inval @@ -9,7 +9,7 @@ m4/msvc-inval.m4 Depends-on: configure.ac: -gl_MSVC_INVAL +AC_REQUIRE([gl_MSVC_INVAL]) if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then AC_LIBOBJ([msvc-inval]) fi diff --git a/modules/msvc-nothrow b/modules/msvc-nothrow index 076bb86d49..2e670f9aab 100644 --- a/modules/msvc-nothrow +++ b/modules/msvc-nothrow @@ -11,7 +11,7 @@ Depends-on: msvc-inval configure.ac: -gl_MSVC_NOTHROW +AC_REQUIRE([gl_MSVC_NOTHROW]) if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then AC_LIBOBJ([msvc-nothrow]) fi