components/ruby/puppet/patches/puppet-01-installrb-nogzip-manpage.patch
branchs11-update
changeset 3458 4912663e9858
parent 2928 43b3da52b84a
equal deleted inserted replaced
3455:6bba35ecb6b8 3458:4912663e9858
       
     1 Oracle customization - non upstream patch
       
     2 Prevent puppet's build script from gzipping the manpages.  Our version
       
     3 of man doesn't understand manpages with a .gz extension
       
     4 
       
     5 --- puppet-3.6.2/install.rb.orig	2014-06-18 09:37:25.655213788 -0600
       
     6 +++ puppet-3.6.2/install.rb	2014-06-18 09:34:22.299805367 -0600
       
     7 @@ -135,9 +135,6 @@
       
     8        FileUtils.chmod(0755, om)
       
     9        FileUtils.install(mf, omf, {:mode => 0644, :preserve => true, :verbose => true})
       
    10      end
       
    11 -    gzip = %x{which gzip}
       
    12 -    gzip.chomp!
       
    13 -    %x{#{gzip} -f #{omf}}
       
    14    end
       
    15  end
       
    16