diff options
| author | Nils Fenner | 2013-12-30 14:48:21 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2013-12-30 21:45:35 +0000 |
| commit | 65cc2e1828a2a6f0da0014359b60596a5429bd17 (patch) | |
| tree | 605bd22c41154b143cb519f157a782c45414d17b /Library | |
| parent | 2c1e366e167879781b45a376a21d882b76c5040f (diff) | |
| download | homebrew-65cc2e1828a2a6f0da0014359b60596a5429bd17.tar.bz2 | |
qt5: fix doc installation.
Closes #25414.
Closes #25550.
Closes #25553.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qt5.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/qt5.rb b/Library/Formula/qt5.rb index 81594f12b..58168388d 100644 --- a/Library/Formula/qt5.rb +++ b/Library/Formula/qt5.rb @@ -84,9 +84,12 @@ class Qt5 < Formula system "./configure", *args system "make" - system "make", "docs" if build.with? 'docs' ENV.j1 system "make install" + if build.with? 'docs' + system "make", "docs" + system "make", "install_docs" + end # Some config scripts will only find Qt in a "Frameworks" folder cd prefix do |
