diff options
| author | Adam Vandenberg | 2012-09-02 12:34:14 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-02 12:34:14 -0700 |
| commit | 3b56f2ee413dc5279b132fd44b056c5e889e7ab3 (patch) | |
| tree | a7087340c150dee1186d6e3cb211331944bc8c61 /Library | |
| parent | bcac733e2cfb3a90fd755bd97f4f906117c51d95 (diff) | |
| download | homebrew-3b56f2ee413dc5279b132fd44b056c5e889e7ab3.tar.bz2 | |
mysql: normalize option name
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mysql.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/mysql.rb b/Library/Formula/mysql.rb index 19a848aef..0e6b48f13 100644 --- a/Library/Formula/mysql.rb +++ b/Library/Formula/mysql.rb @@ -22,7 +22,7 @@ class Mysql < Formula option 'with-archive-storage-engine', 'Compile with the ARCHIVE storage engine enabled' option 'with-blackhole-storage-engine', 'Compile with the BLACKHOLE storage engine enabled' option 'enable-local-infile', 'Build with local infile loading support' - option 'with-debug', 'Build with debug support' + option 'enable-debug', 'Build with debug support' conflicts_with 'mariadb', :because => "mysql and mariadb install the same binaries." @@ -83,7 +83,7 @@ class Mysql < Formula args << "-DENABLED_LOCAL_INFILE=1" if build.include? 'enable-local-infile' # Build with debug support - args << "-DWITH_DEBUG=1" if build.include? 'with-debug' + args << "-DWITH_DEBUG=1" if build.include? 'enable-debug' system "cmake", *args system "make" |
