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=1afce6eeff287c7d50412b34fd02b3d8bed8c3c2

commit 1afce6eeff287c7d50412b34fd02b3d8bed8c3c2
Author: Santiago Vila <[email protected]>
AuthorDate: Tue Dec 17 04:33:11 2024 +0100

    Dpkg::BuildInfo: Add GNUMAKEFLAGS as an allowed environment variable
    
    This variable affects the make(1) behavior, so it's important to track
    it for reproducible purposes.
    
    [[email protected]: Update test suite. ]
    
    Closes: #1090337
    Signed-off-by: Guillem Jover <[email protected]>
---
 scripts/Dpkg/BuildInfo.pm  | 1 +
 scripts/t/Dpkg_BuildInfo.t | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/Dpkg/BuildInfo.pm b/scripts/Dpkg/BuildInfo.pm
index e52533c30..8a39d459f 100644
--- a/scripts/Dpkg/BuildInfo.pm
+++ b/scripts/Dpkg/BuildInfo.pm
@@ -90,6 +90,7 @@ my @env_allowed = (
         LDFLAGS_FOR_BUILD
         ARFLAGS
         MAKEFLAGS
+        GNUMAKEFLAGS
     ),
     # Dynamic linker, see ld(1).
     qw(
diff --git a/scripts/t/Dpkg_BuildInfo.t b/scripts/t/Dpkg_BuildInfo.t
index edc18183c..09617e576 100644
--- a/scripts/t/Dpkg_BuildInfo.t
+++ b/scripts/t/Dpkg_BuildInfo.t
@@ -22,5 +22,5 @@ BEGIN {
     use_ok('Dpkg::BuildInfo');
 }
 
-is(scalar Dpkg::BuildInfo::get_build_env_allowed(), 60,
+is(scalar Dpkg::BuildInfo::get_build_env_allowed(), 61,
    'allowed environment variables array');

-- 
Dpkg.Org's dpkg

Reply via email to