mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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'.
This commit is contained in:
parent
eed987855c
commit
ee216d16ef
1 changed files with 2 additions and 2 deletions
|
@ -531,8 +531,8 @@ (define-public tiled
|
||||||
(substitute* "translations/translations.pro"
|
(substitute* "translations/translations.pro"
|
||||||
(("LRELEASE =.*")
|
(("LRELEASE =.*")
|
||||||
(string-append "LRELEASE = "
|
(string-append "LRELEASE = "
|
||||||
(assoc-ref inputs "qttools-5")
|
(search-input-file inputs "/bin/lrelease")
|
||||||
"/bin/lrelease\n")))
|
"\n")))
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(invoke "qmake"
|
(invoke "qmake"
|
||||||
(string-append "PREFIX=" out))))))))
|
(string-append "PREFIX=" out))))))))
|
||||||
|
|
Loading…
Reference in a new issue