ht: Add --disable-x11-textmode.

This seems pretty useless on OS X and prevents X11 form being uselessly
started when using ht.

Closes Homebrew/homebrew#13347.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jonathan Schleifer 2012-07-12 00:25:18 +02:00 committed by Adam Vandenberg
parent 06a0b767ad
commit 2b2a9917d7
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ class Ht < Formula
def install
system "chmod +x ./install-sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
"--prefix=#{prefix}",
"--disable-x11-textmode"
system "make install"
end
end