aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisty De Meo2014-03-19 08:11:07 -0700
committerMisty De Meo2014-03-19 08:11:07 -0700
commit4ff2a5e975c1fac8c61caa163a8512afe1cc06ef (patch)
tree8ad8b08d1bbe860e85feb8dad5c6d9fd6f2c811b
parent0379f6bc3320176bd7fbd35db01b3a2c2602530d (diff)
downloadhomebrew-4ff2a5e975c1fac8c61caa163a8512afe1cc06ef.tar.bz2
neon: fix Formula[] usage
Fixes #27689
-rw-r--r--Library/Formula/neon.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/neon.rb b/Library/Formula/neon.rb
index 87441f698..8f4833f57 100644
--- a/Library/Formula/neon.rb
+++ b/Library/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"