1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: configuration: gzip: optimization
Use gzip with maximal compression level
(Ralf Treinen and Atsuhito Kohda) and
the rsyncable paradigm (Jerome Benoit)
Origin: vendor, Debian
Forwarded: not-needed
Author: Jerome Benoit <calculus@rezozer.net>
Author: Atsuhito Kohda <kohda@debian.org>
Author: Ralf Treinen <treinen@debian.org>
Last-Update: 2024-08-15
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,7 +42,7 @@
MV = mv -f
LN = ln -f
CHMOD = @CONFIG_CHMOD@
-GZIP = gzip -f
+GZIP = gzip -f --best --rsyncable
STRIP = @CONFIG_STRIP@
TOUCH = touch
SIGN = misc/admin/sign_update
|