guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

26/52: build: qt-utils: Use QML_IMPORT_PATH for Qt 6.


From: guix-commits
Subject: 26/52: build: qt-utils: Use QML_IMPORT_PATH for Qt 6.
Date: Sat, 30 Mar 2024 20:41:42 -0400 (EDT)

apteryx pushed a commit to branch qt-team
in repository guix.

commit 4403ec0d19694ba42e6c9c9d2ff1e5726b993a24
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Mar 23 00:31:25 2024 -0400

    build: qt-utils: Use QML_IMPORT_PATH for Qt 6.
    
    * guix/build/qt-utils.scm (variables-for-wrapping): Use QML_IMPORT_PATH
    instead of QML2_IMPORT_PATH when the major version is greater or equal to 6.
    
    Change-Id: I3480b540d3c0caafd3cc3d6574442dc97f540953
---
 guix/build/qt-utils.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/guix/build/qt-utils.scm b/guix/build/qt-utils.scm
index 7d1b0e0e23..8962c0edb8 100644
--- a/guix/build/qt-utils.scm
+++ b/guix/build/qt-utils.scm
@@ -3,8 +3,7 @@
 ;;; Copyright © 2019, 2020, 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
 ;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
-;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021, 2022, 2023, 2024 Maxim Cournoyer 
<maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -90,8 +89,10 @@
     '("XDG_CONFIG_DIRS" suffix directory "/etc/xdg")
     `("QT_PLUGIN_PATH" prefix directory
       ,(format #f "/lib/qt~a/plugins" qt-major-version))
-    `("QML2_IMPORT_PATH" prefix directory
-      ,(format #f "/lib/qt~a/qml" qt-major-version))
+    `(,(if (>= 6 (string->number qt-major-version))
+           "QML_IMPORT_PATH"
+           "QML2_IMPORT_PATH")
+      prefix directory ,(format #f "/lib/qt~a/qml" qt-major-version))
     ;; QTWEBENGINEPROCESS_PATH accepts a single value, which makes 'exact the
     ;; most suitable environment variable type for it.
     `("QTWEBENGINEPROCESS_PATH" = regular



reply via email to

[Prev in Thread] Current Thread [Next in Thread]