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=9c68bd1d8123ad28d68665da3bf704a6df6155cc

commit 9c68bd1d8123ad28d68665da3bf704a6df6155cc
Author: Guillem Jover <[email protected]>
AuthorDate: Sat Mar 19 09:27:02 2022 +0100

    Dpkg::Compression: Use gzip --rsyncable on Solaris too
    
    Latest Solaris releases have a new enough GNU gzip version, so it can
    also be used there.
    
    Changelog: silent
---
 scripts/Dpkg/Compression.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/Dpkg/Compression.pm b/scripts/Dpkg/Compression.pm
index e081a255f..7470b191b 100644
--- a/scripts/Dpkg/Compression.pm
+++ b/scripts/Dpkg/Compression.pm
@@ -90,7 +90,7 @@ my $COMP = {
 # Requires GNU gzip >= 1.7 for the --rsyncable option. On AIX GNU gzip is
 # too old. On the BSDs they use their own implementation based on zlib,
 # which does not currently support the --rsyncable option.
-if (any { $Config{osname} eq $_ } qw(linux gnu)) {
+if (any { $Config{osname} eq $_ } qw(linux gnu solaris)) {
     push @{$COMP->{gzip}->{comp_prog}}, '--rsyncable';
 }
 

-- 
Dpkg.Org's dpkg

Reply via email to