Oracle customization - non upstream patch
Prevent puppet's build script from gzipping the manpages. Our version
of man doesn't understand manpages with a .gz extension
--- puppet-3.6.2/install.rb.orig 2014-06-18 09:37:25.655213788 -0600
+++ puppet-3.6.2/install.rb 2014-06-18 09:34:22.299805367 -0600
@@ -135,9 +135,6 @@
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