components/puppet/patches/puppet-01-installrb-nogzip-manpage.patch
branchs11-update
changeset 3458 4912663e9858
parent 3455 6bba35ecb6b8
child 3459 e1b247c39c22
equal deleted inserted replaced
3455:6bba35ecb6b8 3458:4912663e9858
     1 Prevent puppet's build script from gzipping the manpages.  Our version
       
     2 of man doesn't understand manpages with a .gz extension
       
     3 
       
     4 --- puppet-3.4.1/install.rb.orig	2013-01-04 14:05:09.892870020 -0700
       
     5 +++ puppet-3.4.1/install.rb	2013-01-04 14:05:40.466062888 -0700
       
     6 @@ -146,9 +146,6 @@
       
     7        FileUtils.chmod(0755, om)
       
     8        FileUtils.install(mf, omf, {:mode => 0644, :verbose => true})
       
     9      end
       
    10 -    gzip = %x{which gzip}
       
    11 -    gzip.chomp!
       
    12 -    %x{#{gzip} -f #{omf}}
       
    13    end
       
    14  end
       
    15