diff options
| author | Adam Vandenberg | 2012-03-20 22:30:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-20 22:30:24 -0700 |
| commit | 6373f320cd4aa9c23566e2ff9b29ef27c152e5c1 (patch) | |
| tree | bf4c02684c5e8ad546a1010cfd12afe07bddcfef /Library/Formula/aplus.rb | |
| parent | f307c367d18f4455aa32f76059caa95cff4afbc6 (diff) | |
| download | homebrew-6373f320cd4aa9c23566e2ff9b29ef27c152e5c1.tar.bz2 | |
use make from path
Diffstat (limited to 'Library/Formula/aplus.rb')
| -rw-r--r-- | Library/Formula/aplus.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/aplus.rb b/Library/Formula/aplus.rb index 09d25be93..72c477e5b 100644 --- a/Library/Formula/aplus.rb +++ b/Library/Formula/aplus.rb @@ -1,9 +1,9 @@ require 'formula' class Aplus < Formula + homepage 'http://www.aplusdev.org/' url 'http://mirrors.kernel.org/debian/pool/main/a/aplus-fsf/aplus-fsf_4.22.1.orig.tar.gz' mirror 'http://ftp.us.debian.org/debian/pool/main/a/aplus-fsf/aplus-fsf_4.22.1.orig.tar.gz' - homepage 'http://www.aplusdev.org/' md5 'c45df4f3e816d7fe957deed9b81f66c3' # Fix the missing CoreServices include (via Fink version of aplus) @@ -28,10 +28,9 @@ class Aplus < Formula system "autoconf" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "/usr/bin/make" - # make install breaks with -j option - ENV.j1 - system "/usr/bin/make", "install" + system "make" + ENV.j1 # make install breaks with -j option + system "make", "install" end def caveats |
