17 lines
452 B
Plaintext
17 lines
452 B
Plaintext
$OpenBSD: patch-install_rb,v 1.7 2013/01/23 23:00:40 jasper Exp $
|
|
|
|
Don't gzip(1) the manual pages.
|
|
|
|
--- install.rb.orig Wed Dec 26 23:16:17 2012
|
|
+++ install.rb Wed Jan 23 23:50:53 2013
|
|
@@ -134,9 +134,6 @@ def do_man(man, strip = 'man/')
|
|
FileUtils.chmod(0755, om)
|
|
FileUtils.install(mf, omf, {:mode => 0644, :preserve => true, :verbose => true})
|
|
end
|
|
- gzip = %x{which gzip}
|
|
- gzip.chomp!
|
|
- %x{#{gzip} -f #{omf}}
|
|
end
|
|
end
|
|
|