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=4682b6a2941407fc86390edec62d42466e07954f

commit 4682b6a2941407fc86390edec62d42466e07954f
Author: Guillem Jover <[email protected]>
AuthorDate: Sat May 13 20:51:22 2023 +0200

    test: Pass -n to gzip for all invocations
    
    Reduce potential for unreproducible output in the generated artifacts,
    so that we do not need to take that into account in the tests, even
    though this is currently not a cause for test failures. This also makes
    these calls consistent with other gzip usage in the test suite which
    were already using this option.
---
 src/at/deb-format.at | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/at/deb-format.at b/src/at/deb-format.at
index b5d0fe8fa..56f5349e8 100644
--- a/src/at/deb-format.at
+++ b/src/at/deb-format.at
@@ -181,8 +181,8 @@ m4_define([DPKG_GEN_PKG_DEB_FORMAT_TEMPL], [
 
   # Extract the base members
   ar x pkg-templ.deb
-  gzip -c control.tar >control.tar.gz
-  gzip -c data.tar >data.tar.gz
+  gzip -cn control.tar >control.tar.gz
+  gzip -cn data.tar >data.tar.gz
   ])
 ])
 

-- 
Dpkg.Org's dpkg

Reply via email to