Uncompressing the rake man page results in an error message:

$ cygcheck -f /usr/share/man/man1/rake.1.gz
ruby-rake-10.0.4-1

$ gzip -t /usr/share/man/man1/rake.1.gz
gzip: /usr/share/man/man1/rake.1.gz: unexpected end of file

This does not affect the "man rake" command. The uncompressed data is complete.


There is only a bogus '\n' at the end of the .gz file:

$ od -t x1 rake.1.gz
...
0002520 bf df c8 48 f4 e4 0a 00 00 0a
.......... ----CRC---- ---SIZE----

$ head -c -1 rake.1.gz | gzip -t


Probably an upstream issue. The rake.1.gz file is also included in the source package.

Regards,
Christian

Reply via email to