aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-02-09 18:42:54 -0600
committerJack Nagel2013-02-09 18:42:54 -0600
commitb73d53af97a4fd12cc6be1c58d70937419966f80 (patch)
treebc3b6dbcfa682f1c81c4d3214ddbbbad6022e5a3 /Library
parentccbc8a7d4af26c16913b4284d9e7115ed6affa43 (diff)
downloadhomebrew-b73d53af97a4fd12cc6be1c58d70937419966f80.tar.bz2
moreutils: install errno utility
Diffstat (limited to 'Library')
-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