summaryrefslogtreecommitdiffstats
path: root/install.rb
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-10-06 15:25:20 -0700
committerMarkus Roberts <Markus@reality.com>2010-10-06 15:25:20 -0700
commit1d719bee75e10657c8b31a4672fe24c12a235d4d (patch)
treeac71a1a5a153306609610d2708878e4620536994 /install.rb
parent55417bc454132bc8c48ff98d5092baa85f94d6ed (diff)
downloadpuppet-1d719bee75e10657c8b31a4672fe24c12a235d4d.tar.gz
puppet-1d719bee75e10657c8b31a4672fe24c12a235d4d.tar.xz
puppet-1d719bee75e10657c8b31a4672fe24c12a235d4d.zip
Fix for #4945 -- explicitly check os to supress man page installation
The fix for #4644 usurped an existing option flag to supress the installation of man pages on Microsoft Windows, when the desired behaviour was to only skip the installation on MSWin and not change the behaviour on other platforms. This patch implements the check explicitly to correctly express the desired behaviour.
Diffstat (limited to 'install.rb')
-rwxr-xr-xinstall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.rb b/install.rb
index 449223d26..f7541c854 100755
--- a/install.rb
+++ b/install.rb
@@ -462,4 +462,4 @@ prepare_installation
do_bins(sbins, InstallOptions.sbin_dir)
do_bins(bins, InstallOptions.bin_dir)
do_libs(libs)
-do_man(man) if InstallOptions.man
+do_man(man) unless $operatingsystem == "windows"