diff options
| author | Jack Nagel | 2013-11-19 14:30:13 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-19 14:30:30 -0600 |
| commit | 85ca0ee2ee1a09452c527ae81e4b61b447a68f82 (patch) | |
| tree | 9b4484f1deb2ab164886779b87de8a07183abc70 /Library/Formula | |
| parent | ec452d54d2cc1dfc41a4461c17f19e6be88e1ad2 (diff) | |
| download | homebrew-85ca0ee2ee1a09452c527ae81e4b61b447a68f82.tar.bz2 | |
Clarify how to install Qt on 10.9
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/qt.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/qt.rb b/Library/Formula/qt.rb index 7a537c6c4..f47303bf0 100644 --- a/Library/Formula/qt.rb +++ b/Library/Formula/qt.rb @@ -71,7 +71,10 @@ class Qt < Formula def install # Must be built with --HEAD on Mavericks at the moment - raise 'Qt currently requires --HEAD on Mavericks' if MacOS.version == :mavericks and not build.head? + raise <<-EOS.undent if MacOS.version == :mavericks and not build.head? + On Mavericks, you must install Qt HEAD: + brew install qt --HEAD + EOS ENV.universal_binary if build.universal? ENV.append "CXXFLAGS", "-fvisibility=hidden" |
