From 47e761b929db9ecdfbb209a5280803606f9da19f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 18 Jun 2024 17:47:36 +0800 Subject: [PATCH] gnu: guile-shapefile: Fix build. * gnu/packages/guile-xyz.scm (guile-shapefile)[arguments]: Don't refer to nonexistent 'install' phase. Change-Id: Idf7c38d399c124d537740aa48eb525fcf6cc9e64 --- gnu/packages/guile-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index e9814316d7..29947fb8e2 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -5664,7 +5664,7 @@ (define-public guile-shapefile (lambda _ (delete-file-recursively "docs") #t)) - (add-after 'install 'install-info-documentation + (add-after 'build 'install-info-documentation (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((share (string-append (assoc-ref outputs "out") "/share")) (doc (string-append share "/doc/" ,name "-" ,version))