From ee216d16ef5ea537eaf5508dcffa5d808ab62bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Mon, 8 Aug 2022 10:15:13 +0800 Subject: [PATCH] gnu: tiled: Fix build. Fixes . * 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 @@ (define-public tiled (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))))))))