aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-11-18 19:47:12 -0600
committerJack Nagel2013-11-18 19:48:54 -0600
commitcfe6c4ab316367c941cf68ea7a509f8c8abbc50d (patch)
tree380df66e07dca5ca0a42cb9ff2cb89dcd244b9fc /Library/Formula
parent42008bef7a7a111bf553c7302f8df3144cf4a13e (diff)
downloadhomebrew-cfe6c4ab316367c941cf68ea7a509f8c8abbc50d.tar.bz2
cfengine: fix opportunistic linking with mysql and postgres
Fixes #24448.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cfengine.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/cfengine.rb b/Library/Formula/cfengine.rb
index ab1649647..acbca85a2 100644
--- a/Library/Formula/cfengine.rb
+++ b/Library/Formula/cfengine.rb
@@ -21,13 +21,13 @@ class Cfengine < Formula
end
def install
- # Find our libpcre
- ENV.append 'LDFLAGS', "-L#{Formula.factory('pcre').opt_prefix}/lib"
-
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-workdir=#{var}/cfengine",
- "--with-tokyocabinet"
+ "--with-tokyocabinet",
+ "--with-pcre=#{Formula.factory('pcre').opt_prefix}",
+ "--without-mysql",
+ "--without-postgresql"
system "make install"
end