components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch
author Mike Sullivan <Mike.Sullivan@Oracle.COM>
Mon, 03 Mar 2014 23:00:33 -0800
changeset 1741 8e31d13070e7
parent 1655 2490bf4f53ea
permissions -rw-r--r--
Added tag s12-43 for changeset d5b2d81eeedc

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

--- puppet-3.4.1/install.rb.orig	2013-01-04 14:05:09.892870020 -0700
+++ puppet-3.4.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