diff options
| author | Charles Brossollet | 2011-05-23 18:18:23 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-05-23 09:36:14 -0700 | 
| commit | 472c05b8f528df82a2576a25ba109034b98b89d0 (patch) | |
| tree | 8a75b0ca5aaa6d1ec5afed203640b5f75ce92c94 /Library/Formula/cmake.rb | |
| parent | e22a2513aef098949ac110b7f3603163bbdb1a83 (diff) | |
| download | homebrew-472c05b8f528df82a2576a25ba109034b98b89d0.tar.bz2 | |
CMake: upstream patch for non-standard Devtools path
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/cmake.rb')
| -rw-r--r-- | Library/Formula/cmake.rb | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/cmake.rb b/Library/Formula/cmake.rb index 905d5e5c8..6307471cd 100644 --- a/Library/Formula/cmake.rb +++ b/Library/Formula/cmake.rb @@ -5,6 +5,13 @@ class Cmake < Formula    md5 '209b7d1d04b2e00986538d74ba764fcf'    homepage 'http://www.cmake.org/' +  def patches +    # fixes CMake 2.8 to 2.8.4 not recognizing non-standard Developer tools issue +    # fixed in CMake 2.8.5 (not yet released) +    # upstream issue at http://public.kitware.com/Bug/view.php?id=10723 +    "http://cmake.org/gitweb?p=cmake.git;a=patch;h=d421a433a89064926ae6aad532850b8bed113562" +  end +    def install      # A framework-installed expat will be detected and mess things up.      if File.exist? "/Library/Frameworks/expat.framework"  | 
