From f31ba22a19b86d7e3cefa0ff83b44fd20de983f3 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 11 Aug 2011 12:39:03 -0700 Subject: clisp: disable self-check on Lion The self check fails to run on Lion, though installation succeeds. So skip the test, but warn the user. Fixes #6905 --- Library/Formula/clisp.rb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/clisp.rb b/Library/Formula/clisp.rb index 99aebf2a7..8b988e56f 100644 --- a/Library/Formula/clisp.rb +++ b/Library/Formula/clisp.rb @@ -36,8 +36,15 @@ class Clisp < Formula # The ulimit must be set, otherwise `make` will fail and tell you to do so system "ulimit -s 16384 && make" - # Considering the complexity of this package, a self-check is highly recommended. - system "make check" + if MacOS.lion? + opoo "`make check` fails on Lion, so we are skipping it." + puts "But it probably means there will be other issues too." + puts "Please take them upstream to the clisp project itself." + else + # Considering the complexity of this package, a self-check is highly recommended. + system "make check" + end + system "make install" end end -- cgit v1.2.3