From 63ba4fd1886398e63e8357b0b880d319ef749875 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Wed, 1 May 2024 18:10:16 +0200 Subject: gnu: webkit: Fix ‘move-doc-files’. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/webkit.scm (webkitgtk)[#:phases]: Refer to $prefix/share/doc instead of the now unused $prefix/share/gtk-doc. --- gnu/packages/webkit.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index d374efc2af..a3a811fa6f 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -223,8 +223,8 @@ (define-public webkitgtk (lambda* (#:key outputs #:allow-other-keys) (let ((doc (assoc-ref outputs "doc"))) (mkdir-p (string-append doc "/share")) - (rename-file (string-append #$output "/share/gtk-doc") - (string-append doc "/share/gtk-doc")))))))) + (rename-file (string-append #$output "/share/doc") + (string-append doc "/share/doc")))))))) (native-inputs (list bison gettext-minimal -- cgit v1.2.3