aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/moreutils.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/moreutils.rb b/Library/Formula/moreutils.rb
index 9b77e186f..4c83d2732 100644
--- a/Library/Formula/moreutils.rb
+++ b/Library/Formula/moreutils.rb
@@ -13,11 +13,10 @@ class Moreutils < Formula
:because => "both install a 'ts' executable."
def install
- # Building the man pages requires DocBook, so we skip them.
- scripts = %w[chronic combine ts vidir vipe zrun]
- binaries = %w[isutf8 ifne pee sponge mispipe lckdo parallel]
- # Just `make all` will try to build the man pages.
- system "make", *binaries
- bin.install scripts + binaries
+ # "make all" will try to build the man pages, which requires Docbook
+ scripts = %w{vidir vipe ts combine zrun chronic}
+ bins = %w{isutf8 ifne pee sponge mispipe lckdo parallel errno}
+ system "make", *bins
+ bin.install scripts + bins
end
end