From ec9cbc26bd2df26808a2705e9365322fa31e759c Mon Sep 17 00:00:00 2001 From: Luke Gallagher Date: Thu, 9 Jan 2014 18:13:04 +1100 Subject: [PATCH] gearman: fix mysql configure arguments Closes Homebrew/homebrew#25754. Signed-off-by: Mike McQuaid --- Formula/gearman.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/gearman.rb b/Formula/gearman.rb index 2b9650346d..7f7a76e0b2 100644 --- a/Formula/gearman.rb +++ b/Formula/gearman.rb @@ -15,7 +15,7 @@ class Gearman < Formula def install args = ["--prefix=#{prefix}"] - args << "--with-mysql" if build.with? 'mysql' + args << "--without-mysql" unless build.with? 'mysql' system "./configure", *args system "make install"