components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch
author Petr Nyc <Petr.Nyc@Oracle.COM>
Wed, 15 Oct 2014 01:05:43 -0700
branchs11u2-sru
changeset 3393 553885b82394
parent 2928 43b3da52b84a
permissions -rw-r--r--
Added tag 0.175.2.4.0.3.0, S11.2SRU4.3 for changeset d22bbc4e4aab

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