coq: Do not pass -arch to ./configure

Closes Homebrew/homebrew#14526.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Kenn Knowles 2012-08-29 13:50:21 -04:00 committed by Adam Vandenberg
parent 370e250db3
commit 5e98833a3b
1 changed files with 1 additions and 3 deletions

View File

@ -30,7 +30,6 @@ class Coq < Formula
depends_on 'camlp5'
def install
arch = Hardware.is_64_bit? ? "x86_64" : "i386"
camlp5_lib = Formula.factory('camlp5').lib+'ocaml/camlp5'
system "./configure", "-prefix", prefix,
"-mandir", man,
@ -38,8 +37,7 @@ class Coq < Formula
"-emacslib", "#{lib}/emacs/site-lisp",
"-coqdocdir", "#{share}/coq/latex",
"-coqide", "no",
"-with-doc", "no",
"-arch", arch
"-with-doc", "no"
ENV.j1 # Otherwise "mkdir bin" can be attempted by more than one job
system "make world"
system "make install"