diff options
| author | Adam Vandenberg | 2010-10-21 19:46:39 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-21 19:46:39 -0700 |
| commit | 7da4ac655e7c108c3f16a3d9db7b662e97bdc72f (patch) | |
| tree | 107ffa7131e03d0fb67f25af6b6670ccde1f87fc /Library/Formula | |
| parent | 10e4612f038f9dd3859f8acd008f5f91830ccb54 (diff) | |
| download | homebrew-7da4ac655e7c108c3f16a3d9db7b662e97bdc72f.tar.bz2 | |
sphinx - check for mysql client libs. Fixes #2262
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sphinx.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/sphinx.rb b/Library/Formula/sphinx.rb index 82851936c..0eb383e53 100644 --- a/Library/Formula/sphinx.rb +++ b/Library/Formula/sphinx.rb @@ -12,7 +12,7 @@ class Sphinx <Formula config_args = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"] # configure script won't auto-select PostgreSQL config_args << "--with-pgsql" if `/usr/bin/which pg_config`.size > 0 - config_args << "--without-mysql" if `/usr/bin/which mysqld`.size <= 0 + config_args << "--without-mysql" if `/usr/bin/which mysql`.size <= 0 system "./configure", *config_args system "make install" |
