Skip to content

Commit 29db049

Browse files
committed
Drop Solaris conditionals
1 parent 201486b commit 29db049

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

install.rb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,7 @@ def do_man(man, strip = 'man/')
8282
FileUtils.makedirs(om, mode: 0755, verbose: true)
8383
FileUtils.chmod(0755, om)
8484
FileUtils.install(mf, omf, mode: 0644, preserve: true, verbose: true)
85-
# Solaris does not support gzipped man pages. When called with
86-
# --no-check-prereqs/without facter the default gzip behavior still applies
87-
unless $osname == "Solaris"
88-
%x{gzip --force --no-name #{omf}}
89-
end
85+
%x{gzip --force --no-name #{omf}}
9086
end
9187
end
9288

0 commit comments

Comments
 (0)