diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qt.rb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Library/Formula/qt.rb b/Library/Formula/qt.rb index c4af5050f..222a60488 100644 --- a/Library/Formula/qt.rb +++ b/Library/Formula/qt.rb @@ -78,16 +78,11 @@ class Qt < Formula args << '-arch' << 'x86' end - # We move the source and build in-place because: - # - Debug symbols need to find the source so build in the prefix - # - to fix https://github.com/mxcl/homebrew/issues/20020 - # - PySide `make apidoc` needs the src - (prefix/"src").mkdir - mv Dir['*'], "#{prefix}/src/" - cd "#{prefix}/src" - if build.with? 'debug-and-release' args << "-debug-and-release" + # Debug symbols need to find the source so build in the prefix + mv "../qt-everywhere-opensource-src-#{version}", "#{prefix}/src" + cd "#{prefix}/src" else args << "-release" end |
