This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=adc3dd67b3c5580919fc9ee99e2b6ec9819c4640 commit adc3dd67b3c5580919fc9ee99e2b6ec9819c4640 Author: Guillem Jover <[email protected]> AuthorDate: Thu Jul 25 17:48:19 2024 +0200 build: Fix dpkg_cv_c99 assignment in DPKG_C_C99 macro The variable should be assigned a "yes" not a "1". --- m4/dpkg-compiler.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/dpkg-compiler.m4 b/m4/dpkg-compiler.m4 index 287c802e9..65ee605bc 100644 --- a/m4/dpkg-compiler.m4 +++ b/m4/dpkg-compiler.m4 @@ -286,7 +286,7 @@ AC_DEFUN([DPKG_C_C99], [ ]) AS_IF([test "x$dpkg_cv_c99_arg" != "xnone"], [ CC="$CC $dpkg_cv_c99_arg" - dpkg_cv_c99=1 + dpkg_cv_c99=yes ]) ]) AS_IF([test "x$dpkg_cv_c99" != "xyes"], [ -- Dpkg.Org's dpkg

