improve error message when qt4 is not found (closes #733)

This commit is contained in:
Romain Bignon 2012-02-02 10:13:17 +01:00
commit 82bffbd660

View file

@ -82,7 +82,7 @@ else:
def build_qt():
print 'Building Qt applications'
pyuic4 = check_executable('pyuic4', 'To disable Qt applications, use --no-qt.')
pyuic4 = check_executable('pyuic4', 'Install PyQt4-devel or disable Qt applications (with --no-qt).')
if sys.platform == 'win32':
env={ 'PYUIC' : pyuic4, 'PATH':os.environ['PATH']}