diff options
| author | Jack Nagel | 2013-11-18 19:47:12 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-18 19:48:54 -0600 |
| commit | cfe6c4ab316367c941cf68ea7a509f8c8abbc50d (patch) | |
| tree | 380df66e07dca5ca0a42cb9ff2cb89dcd244b9fc /Library/Formula | |
| parent | 42008bef7a7a111bf553c7302f8df3144cf4a13e (diff) | |
| download | homebrew-cfe6c4ab316367c941cf68ea7a509f8c8abbc50d.tar.bz2 | |
cfengine: fix opportunistic linking with mysql and postgres
Fixes #24448.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/cfengine.rb | 8 |
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 |
