Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
5.0.1
-
None
-
Windows 7
-
qttools 05dab891649b76fe7351d51950edf3caba2bfece
Description
When starting lrelease from menue, lrelease aborted with error message:
Could not find qmake configuration directory. Could not find configuration file. Using OS scope before setting MAKEFILE_GENERATOR
I think the reason is an error in 'lrelease' 'main.cpp':
Line 386: binDir = filePath.filePath();
now 'binDir' is not the directory of 'qmake.exe' because function 'filePath()' returns file name and path of 'lrelease'.
It has to be:
Line 386: binDir = filePath.absolutePath();