Skip to content

Commit 85f1999

Browse files
committed
Make compressed man pages reproducible
gzip(1) stores a timestamp in headers unless told not to do so: https://wiki.debian.org/ReproducibleBuilds/TimestampsInGzipHeaders
1 parent 3960fbe commit 85f1999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def do_man(man, strip = 'man/')
8787
unless $osname == "Solaris"
8888
gzip = %x{which gzip}
8989
gzip.chomp!
90-
%x{#{gzip} -f #{omf}}
90+
%x{#{gzip} -fn #{omf}}
9191
end
9292
end
9393
end

0 commit comments

Comments
 (0)