2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 18:07:12 +01:00

pyqt5: bugfix, check the correct variable for RCC executable

This commit is contained in:
fedepell 2019-04-25 11:56:08 +02:00
parent d7f5b986c6
commit 23b09f7493

View File

@ -231,7 +231,7 @@ def find_pyqt5_binaries(self):
if not env.QT_PYUIC:
self.fatal('cannot find the uic compiler for python for qt5')
if not env.QT_PYUIC:
if not env.QT_PYRCC:
self.fatal('cannot find the rcc compiler for python for qt5')
self.find_program(['lrelease-qt5', 'lrelease'], var='QT_LRELEASE')