From 378a9634ae02136c768244f87716998f51765b30 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 18 Jan 2020 14:03:36 +0100 Subject: Fix major regression from 2020-01-10. Reported by Paul Eggert in . * m4/00gnulib.m4 (gl_COMPILER_CLANG, gl_COMPILER_PREPARE_CHECK_DECL): Don't AC_REQUIRE anything. (gl_COMPILER_PREPARE_CHECK_DECL): Define through AC_DEFUN, not AC_DEFUN_ONCE. Use _AC_COMPILE_IFELSE, not AC_COMPILE_IFELSE. (_AC_CHECK_DECL_BODY): If ac_compile_for_check_decl has not been set, use ac_compile instead. (AC_CHECK_DECL): Remove override. * m4/~~gnulib.m4: New file. * gnulib-tool (func_get_filelist): Add also ~~gnulib.m4. * pygnulib/GLModuleSystem.py (getFiles): Likewise. --- pygnulib/GLModuleSystem.py | 1 + 1 file changed, 1 insertion(+) (limited to 'pygnulib/GLModuleSystem.py') diff --git a/pygnulib/GLModuleSystem.py b/pygnulib/GLModuleSystem.py index 9560bc2731..72a6c9f964 100644 --- a/pygnulib/GLModuleSystem.py +++ b/pygnulib/GLModuleSystem.py @@ -544,6 +544,7 @@ Include:|Link:|License:|Maintainer:)' parts += [line] result = [part.strip() for part in parts if part.strip()] result += [joinpath('m4', '00gnulib.m4')] + result += [joinpath('m4', '~~gnulib.m4')] result += [joinpath('m4', 'gnulib-common.m4')] self.cache['files'] = list(result) return(list(self.cache['files'])) -- cgit v1.2.1