diff options
| author | Adam Vandenberg | 2011-03-21 14:24:22 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-25 23:31:30 -0700 |
| commit | f4a925da5aee87cf7e2509116a495779a1af64b8 (patch) | |
| tree | 77ce200b7df19713daf11c72e92c628c86d8a017 /Library/Formula/sphinx.rb | |
| parent | 8f16c418877efb9f036aa4e90fe72406ff27e8a3 (diff) | |
| download | homebrew-f4a925da5aee87cf7e2509116a495779a1af64b8.tar.bz2 | |
Update fails_with_llvm in formulae
Diffstat (limited to 'Library/Formula/sphinx.rb')
| -rw-r--r-- | Library/Formula/sphinx.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/sphinx.rb b/Library/Formula/sphinx.rb index 63749abd7..1f4bda74d 100644 --- a/Library/Formula/sphinx.rb +++ b/Library/Formula/sphinx.rb @@ -6,15 +6,15 @@ class Sphinx < Formula md5 '7b9b618cb9b378f949bb1b91ddcc4f54' head 'http://sphinxsearch.googlecode.com/svn/trunk/' - def install - fails_with_llvm "fails with: ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)" + fails_with_llvm "fails with: ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)" - config_args = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"] + def install + 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 mysql`.size <= 0 + args << "--with-pgsql" if `/usr/bin/which pg_config`.size > 0 + args << "--without-mysql" if `/usr/bin/which mysql`.size <= 0 - system "./configure", *config_args + system "./configure", *args system "make install" end |
