aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJonathan Schleifer2012-07-12 00:25:18 +0200
committerAdam Vandenberg2012-08-10 15:44:06 -0700
commitdc9bda6f0da0c1736698b208e3daf8f7082d6f4e (patch)
tree3afd6b738145e630212446795655f14e3c2ecc77 /Library
parent16983984f6a656b8499e5cb1bd63df8c3af84a9e (diff)
downloadhomebrew-dc9bda6f0da0c1736698b208e3daf8f7082d6f4e.tar.bz2
ht: Add --disable-x11-textmode.
This seems pretty useless on OS X and prevents X11 form being uselessly started when using ht. Closes #13347. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ht.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/ht.rb b/Library/Formula/ht.rb
index 62ec7f8eb..df8ff70d8 100644
--- a/Library/Formula/ht.rb
+++ b/Library/Formula/ht.rb
@@ -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