From 286eb10cb197103fd18209ecacb00348e7c778e9 Mon Sep 17 00:00:00 2001 From: Alexander Altman Date: Mon, 18 May 2015 18:28:41 -0700 Subject: [PATCH] ponyc: minor fixes Removes a now non-existent option for the llvm formula, and ensures that `ponyc` builds in a release configuration. Closes Homebrew/homebrew#39892. Signed-off-by: Xu Cheng --- Formula/ponyc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/ponyc.rb b/Formula/ponyc.rb index ba429e77e8..b05878c222 100644 --- a/Formula/ponyc.rb +++ b/Formula/ponyc.rb @@ -9,12 +9,12 @@ class Ponyc < Formula sha256 "43803911eaf9e1a82a80af581445b65faa56826490602aff4a12cb1b44c51942" => :mountain_lion end - depends_on "llvm" => ["with-rtti", "without-shared"] + depends_on "llvm" => "with-rtti" needs :cxx11 def install ENV.cxx11 - system "make", "install", "destdir=#{prefix}" + system "make", "install", "config=release", "destdir=#{prefix}" end test do