guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: tiled: Fix build.


From: guix-commits
Subject: branch master updated: gnu: tiled: Fix build.
Date: Sun, 07 Aug 2022 22:36:20 -0400

This is an automated email from the git hooks/post-receive script.

iyzsong pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ee216d16ef gnu: tiled: Fix build.
ee216d16ef is described below

commit ee216d16ef5ea537eaf5508dcffa5d808ab62bb0
Author: 宋文武 <iyzsong@member.fsf.org>
AuthorDate: Mon Aug 8 10:15:13 2022 +0800

    gnu: tiled: Fix build.
    
    Fixes <https://issues.guix.gnu.org/57048>.
    
    * gnu/packages/game-development.scm (tiled)[arguments]:
    Use 'search-input-file' to locate 'lrelease'.
---
 gnu/packages/game-development.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 70bd4c0251..090e7f7d12 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -531,8 +531,8 @@ formats such as PNG.")
              (substitute* "translations/translations.pro"
                (("LRELEASE =.*")
                 (string-append "LRELEASE = "
-                               (assoc-ref inputs "qttools-5")
-                               "/bin/lrelease\n")))
+                               (search-input-file inputs "/bin/lrelease")
+                               "\n")))
              (let ((out (assoc-ref outputs "out")))
                (invoke "qmake"
                        (string-append "PREFIX=" out))))))))



reply via email to

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