From aa916f343cb8381172713b74362fede304664396 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 4 Oct 2021 17:08:18 +0200 Subject: gnu: git-lfs: Fix build. * gnu/packages/version-control.scm (git-lfs)[arguments]: Fix 'install-man-pages' phase. --- gnu/packages/version-control.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index f2ea8ddb18..61e188a8dd 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -40,6 +40,7 @@ ;;; Copyright © 2021 Xinglu Chen ;;; Copyright © 2021 François J. ;;; Copyright © 2021 Julien Lepiller +;;; Copyright © 2021 Guillaume Le Vaillant ;;; ;;; This file is part of GNU Guix. ;;; @@ -2876,9 +2877,9 @@ interrupted, published, and collaborated on while in progress.") (invoke "make" "man")) #t)) (add-after 'install 'install-man-pages - (lambda _ + (lambda* (#:key outputs #:allow-other-keys) (with-directory-excursion "src/github.com/git-lfs/git-lfs/man" - (let ((out (assoc-ref %outputs "out"))) + (let ((out (assoc-ref outputs "out"))) (for-each (lambda (manpage) (install-file manpage (string-append out "/share/man/man1"))) -- cgit v1.2.3