From 7ca54244c2437baf81016eaccb2f175ad9aa4a3b Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Wed, 18 Jan 2023 18:51:18 +0100 Subject: [PATCH] gnu: webkitgtk: Resolve outputs at build time. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/webkit.scm (webkitgtk)[#:phases]: Use outputs’ instead of ungexping output. --- gnu/packages/webkit.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 35fb5926a3..918fdfb1ab 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -209,9 +209,10 @@ (define-public webkitgtk "FALSE")))))) (add-after 'install 'move-doc-files (lambda* (#:key outputs #:allow-other-keys) - (let ((doc (assoc-ref outputs "doc"))) + (let ((out (assoc-ref outputs "out")) + (doc (assoc-ref outputs "doc"))) (mkdir-p (string-append doc "/share")) - (rename-file (string-append #$output "/share/gtk-doc") + (rename-file (string-append out "/share/gtk-doc") (string-append doc "/share/gtk-doc")))))))) (native-inputs (list bison -- 2.38.1