diff options
| -rw-r--r-- | Library/Formula/pyqt5.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/pyqt5.rb b/Library/Formula/pyqt5.rb index b70095d8c..59b621942 100644 --- a/Library/Formula/pyqt5.rb +++ b/Library/Formula/pyqt5.rb @@ -47,6 +47,9 @@ class Pyqt5 < Formula "--sipdir=#{share}/sip/Qt5/", # sip.h could not be found automatically "--sip-incdir=#{Formula["sip"].opt_prefix}/include", + # Make sure the qt5 version of qmake is found. + # If qt4 is linked it will pickup that version otherwise. + "--qmake=#{Formula["qt5"].bin}/qmake", # Force deployment target to avoid libc++ issues "QMAKE_MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}" ] args << '--debug' if build.include? 'enable-debug' |
