diff options
| author | Misty De Meo | 2014-06-10 15:58:24 -0700 |
|---|---|---|
| committer | Misty De Meo | 2014-06-10 16:01:04 -0700 |
| commit | 92710b962b4f3fbb5c0ffaf73317ad77e39e73d0 (patch) | |
| tree | 2b8343210a9f516e6be9f04a22b8139a83b4215a | |
| parent | 30d6f96be81b1202d8db9a30baacee61a4a4f7c0 (diff) | |
| download | homebrew-92710b962b4f3fbb5c0ffaf73317ad77e39e73d0.tar.bz2 | |
aplus: --without-x doesn't work
| -rw-r--r-- | Library/Formula/aplus.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/aplus.rb b/Library/Formula/aplus.rb index fc6042a4c..69e00544c 100644 --- a/Library/Formula/aplus.rb +++ b/Library/Formula/aplus.rb @@ -6,6 +6,8 @@ class Aplus < Formula mirror 'http://ftp.us.debian.org/debian/pool/main/a/aplus-fsf/aplus-fsf_4.22.1.orig.tar.gz' sha1 'e757cc7654cf35dba15a6a5d6cac5320146558fc' + depends_on :x11 + # Fix the missing CoreServices include (via Fink version of aplus) # Fix C++ syntax errors for clang patch :DATA @@ -17,8 +19,7 @@ class Aplus < Formula inreplace path, "/usr/local/aplus-fsf-4.20", prefix end - system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--without-x" + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make" ENV.j1 # make install breaks with -j option system "make", "install" |
