From 765455a2929351625cfd16c9fffc66290fae0cab Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Wed, 19 Mar 2014 08:11:07 -0700 Subject: [PATCH] neon: fix Formula[] usage Fixes Homebrew/homebrew#27689 --- Formula/neon.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/neon.rb b/Formula/neon.rb index 87441f698b..8f4833f574 100644 --- a/Formula/neon.rb +++ b/Formula/neon.rb @@ -33,7 +33,7 @@ class Neon < Formula "--with-ssl", ] if build.with? 'brewed-openssl' - args << "--with-libs=#{Formula['openssl']/opt_prefix}" + args << "--with-libs=#{Formula['openssl'].opt_prefix}" end system "./configure", *args system "make install"