3
0
Fork 0
forked from mirrors/nixpkgs

qt5.qtwebengine: fix library paths

Without this it would try to find files in qtbase.
This commit is contained in:
Nikolay Amiantov 2017-03-08 22:48:31 +03:00
parent 6631000bd3
commit 7eb9a85b90

View file

@ -35,6 +35,13 @@ qtSubmodule {
# fix default SSL bundle location
sed -i -e 's,/cert.pem,/certs/ca-bundle.crt,' src/3rdparty/chromium/third_party/boringssl/src/crypto/x509/x509_def.c
# Fix library paths
sed -i \
-e "s,QLibraryInfo::location(QLibraryInfo::DataPath),QLatin1String(\"$out\"),g" \
-e "s,QLibraryInfo::location(QLibraryInfo::TranslationsPath),QLatin1String(\"$out/translations\"),g" \
-e "s,QLibraryInfo::location(QLibraryInfo::LibraryExecutablesPath),QLatin1String(\"$out/libexec\"),g" \
src/core/web_engine_library_info.cpp
configureFlags+="\
-plugindir $out/lib/qt5/plugins \
-importdir $out/lib/qt5/imports \