diff options
| author | Till Adam | 2013-01-21 16:21:25 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2013-01-21 16:28:54 +0000 | 
| commit | 4f7ea00d5add1f9bba5a53c0e5909b8cc9dcf66a (patch) | |
| tree | 8058f995cadfd40e774dacfa6a7e37c6e216a126 | |
| parent | e88a6e8380ac5892c566eecc2c3ed6ec43857fbe (diff) | |
| download | homebrew-4f7ea00d5add1f9bba5a53c0e5909b8cc9dcf66a.tar.bz2 | |
qt-mobility: use upstreamed case-sensitive patch.
References #12220.
Closes #17230.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/qt-mobility.rb | 11 | 
1 files changed, 4 insertions, 7 deletions
| diff --git a/Library/Formula/qt-mobility.rb b/Library/Formula/qt-mobility.rb index eff6f8864..5b9d09995 100644 --- a/Library/Formula/qt-mobility.rb +++ b/Library/Formula/qt-mobility.rb @@ -2,18 +2,15 @@ require 'formula'  class QtMobility < Formula    homepage 'http://qt.nokia.com/products/qt-addons/mobility' -  url 'git://gitorious.org/qt-mobility/qt-mobility.git', :revision => '1ccbeab' -  version '1.2.0-1ccbeab' +  url 'git://gitorious.org/qt-mobility/qt-mobility.git', :revision => '6a75140' +  version '1.2.0-6a75140'    depends_on 'qt' -  def patches -    # Fixes build on case sensitive filesystems -    'http://lists.qt.nokia.com/pipermail/qt-mobility-feedback/attachments/20120220/be90dd45/attachment.obj' -  end -    def install      system "./configure", "-release", "-prefix", prefix, "-qmake-exec", "#{HOMEBREW_PREFIX}/bin/qmake" +    system "make" +    ENV.j1      system "make install"      # Move all .apps out of the "bin/" and into the prefix (like qt formula) | 
