When I run the installation script, it complains about missing Qt lib: libQtCore libQtGui libQtNetwork libQtScript. However, these are available it's just that the check doesn't find them because of the regex. Here's my ldconfig output:
The regex in the script expect a whitespace at the end of the dependencies (^\tlibQtNetwork.so\s) but it isn't the case. Either remove the whitespace from the regex or make it optionnal would fix the problem.
When I run the installation script, it complains about missing Qt lib:
libQtCore libQtGui libQtNetwork libQtScript
. However, these are available it's just that the check doesn't find them because of the regex. Here's my ldconfig output:The regex in the script expect a whitespace at the end of the dependencies (
^\tlibQtNetwork.so\s
) but it isn't the case. Either remove the whitespace from the regex or make it optionnal would fix the problem.