components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch
author Drew Fisher <drew.fisher@oracle.com>
Tue, 21 May 2013 09:30:36 -0600
branchs11-update
changeset 2629 3666f503c6e7
child 1409 9db4ba32e740
child 2771 8e4227dc2fc4
permissions -rw-r--r--
PSARC/2013/005 Puppet 3.0.1 15846284 Integrate the Puppet CM 16479671 problem in UTILITY/PUPPET 16480077 Update Puppet to 3.1.1

Prevent puppet's build script from gzipping the manpages.  Our version
of man doesn't understand manpages with a .gz extension

--- puppet-3.0.1/install.rb.orig	2013-01-04 14:05:09.892870020 -0700
+++ puppet-3.0.1/install.rb	2013-01-04 14:05:40.466062888 -0700
@@ -146,9 +146,6 @@
       FileUtils.chmod(0755, om)
       FileUtils.install(mf, omf, {:mode => 0644, :verbose => true})
     end
-    gzip = %x{which gzip}
-    gzip.chomp!
-    %x{#{gzip} -f #{omf}}
   end
 end