diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2022-08-08 10:15:13 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2022-08-08 10:34:58 +0800 |
commit | ee216d16ef5ea537eaf5508dcffa5d808ab62bb0 (patch) | |
tree | b65908e8842eb59b563563b3bcf6bbe4f24614b5 /gnu/packages | |
parent | eed987855ced6d1774326cf5b261680727c5d65a (diff) | |
download | guix-ee216d16ef5ea537eaf5508dcffa5d808ab62bb0.tar.gz guix-ee216d16ef5ea537eaf5508dcffa5d808ab62bb0.zip |
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'.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/game-development.scm | 4 |
1 files 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)))))))) |