Issue #4925 has been updated by Markus Roberts.

Status changed from Accepted to Ready for Testing
Branch set to MarkusQ:ticket/master/4925

Proposed fix:

<pre>
commit 595b8247cdff222b78aec3ce5be09a6567def5e1
Author: Markus Roberts <[email protected]>
Date:   Tue Oct 19 10:50:16 2010 -0700

    Fix #4925 -- MS Windows doesn't do man pages
    
    So we shouldn't even try to do them if we're on MS Windows.

diff --git a/install.rb b/install.rb
index bbf4007..adc3b3f 100755
--- a/install.rb
+++ b/install.rb
@@ -429,4 +429,5 @@ run_tests(tests) if InstallOptions.tests
 do_bins(sbins, InstallOptions.sbin_dir)
 do_bins(bins, InstallOptions.bin_dir)
 do_libs(libs)
-do_man(man)
+do_man(man) unless RUBY_PLATFORM =~ /mswin/
+
</pre>

----------------------------------------
Bug #4925: install.rb breaks on windows
https://projects.puppetlabs.com/issues/4925

Author: William Van Hevelingen
Status: Ready for Testing
Priority: High
Assignee: 
Category: binary
Target version: 1.6.0
Keywords: windows
Branch: MarkusQ:ticket/master/4925


Commit ca2da36988c4d9fb2afbfc3f15c295df9b8cd05f breaks install.rb on windows

<pre>
install -c -m 0644 man/man8/facter.8 C:/Ruby187/share/man/man8/facter.8
./install.rb:106:in ``': No such file or directory - which gzip (Errno::ENOENT)
        from ./install.rb:106:in `do_man'
        from ./install.rb:100:in `each'
        from ./install.rb:100:in `do_man'
        from ./install.rb:432
</pre>




-- 
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://projects.puppetlabs.com/my/account

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Bugs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-bugs?hl=en.

Reply via email to