You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: