From f83a0edd631cc583fdd1be63dd05fcc951279c3e Mon Sep 17 00:00:00 2001 From: Ehsan Azarnasab Date: Wed, 2 Sep 2015 11:03:10 -0700 Subject: Try qmake-qt4 before giving up on qmake. This is specially useful when installing from PyPI that passing --qmake is not as simple as setup.py approach. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index c4b793247..7d717e014 100644 --- a/setup.py +++ b/setup.py @@ -143,6 +143,8 @@ OPTION_OSXARCH = option_value("osx-arch") if OPTION_QMAKE is None: OPTION_QMAKE = find_executable("qmake") +if OPTION_QMAKE is None: + OPTION_QMAKE = find_executable("qmake-qt4") if OPTION_CMAKE is None: OPTION_CMAKE = find_executable("cmake") -- cgit v1.2.3