gnu: extra-cmake-modules: Fix install-path for plugins.

The respective entry changed for kde-frameworks 5.46.

* gnu/packages/kde-frameworks.scm(krunner)[#phases]<fix-lib-path>:
  Change substitute for QTPLUGINDIR.
This commit is contained in:
Hartmut Goebel 2018-12-20 11:50:07 +01:00
parent ac277bc7c5
commit 69b6086182
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 4 additions and 2 deletions

View File

@ -98,8 +98,10 @@
(("\"lib64\"") "\"lib\"") (("\"lib64\"") "\"lib\"")
;; TODO: Base the following on values taken from Qt ;; TODO: Base the following on values taken from Qt
;; Install plugins into lib/qt5/plugins ;; Install plugins into lib/qt5/plugins
(("_define_relative\\(QTPLUGINDIR LIBDIR \"plugins\"") ;; TODO: Check if this is okay for Android, too
"_define_relative(QTPLUGINDIR LIBDIR \"qt5/plugins\"") ;; (see comment in KDEInstallDirs.cmake)
(("_define_relative\\(QTPLUGINDIR \"\\$\\{_pluginsDirParent}\" \"plugins\"")
"_define_relative(QTPLUGINDIR \"${_pluginsDirParent}\" \"qt5/plugins\"")
;; Install imports into lib/qt5/imports ;; Install imports into lib/qt5/imports
(("_define_relative\\(QTQUICKIMPORTSDIR QTPLUGINDIR \"imports\"") (("_define_relative\\(QTQUICKIMPORTSDIR QTPLUGINDIR \"imports\"")
"_define_relative(QTQUICKIMPORTSDIR LIBDIR \"qt5/imports\"") "_define_relative(QTQUICKIMPORTSDIR LIBDIR \"qt5/imports\"")